blob: d20cb9b5b4856a2cc03121ec98e9d623e9f9a182 [file] [log] [blame]
Clement Escoffier63007232008-07-03 12:08:29 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
Clement Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffier63007232008-07-03 12:08:29 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffier63007232008-07-03 12:08:29 +000012 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Clement Escoffier03e1db72010-05-01 10:21:51 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 </parent>
Clement Escoffier63007232008-07-03 12:08:29 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>iPOJO Temporal Dependency Test Suite</name>
Clement Escoffiereb15bc62008-07-24 10:06:34 +000029 <artifactId>tests.temporal</artifactId>
Clement Escoffier63007232008-07-03 12:08:29 +000030 <groupId>ipojo.tests</groupId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000031 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier63007232008-07-03 12:08:29 +000032 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +000036 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier63007232008-07-03 12:08:29 +000037 </dependency>
Clement Escoffier7a5248a2010-06-22 19:40:39 +000038 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.ipojo.handler.temporal</artifactId>
41 <version>1.7.0-SNAPSHOT</version>
42 </dependency>
Clement Escoffier63007232008-07-03 12:08:29 +000043 <dependency>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier63007232008-07-03 12:08:29 +000046 </dependency>
47 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +000048 <groupId>org.osgi</groupId>
Clement Escoffier63007232008-07-03 12:08:29 +000049 <artifactId>org.osgi.core</artifactId>
Clement Escoffier63007232008-07-03 12:08:29 +000050 </dependency>
51 <dependency>
52 <groupId>junit</groupId>
53 <artifactId>junit</artifactId>
54 <version>3.8.1</version>
55 </dependency>
56 <dependency>
Clement Escoffier18bfd022008-12-01 19:42:13 +000057 <groupId>org.apache.felix</groupId>
Clement Escoffier63007232008-07-03 12:08:29 +000058 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000059 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier63007232008-07-03 12:08:29 +000060 </dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +000061 <dependency>
62 <groupId>org.osgi</groupId>
63 <artifactId>org.osgi.compendium</artifactId>
64 <version>4.0.0</version>
65 </dependency>
Clement Escoffier63007232008-07-03 12:08:29 +000066 </dependencies>
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier63007232008-07-03 12:08:29 +000072 <extensions>true</extensions>
73 <configuration>
74 <instructions>
75 <Export-Package>
76 org.apache.felix.ipojo.test.scenarios.temporal.service
77 </Export-Package>
78 <Bundle-SymbolicName>
Clement Escoffier134b0062010-05-01 10:46:02 +000079 ${project.artifactId}
Clement Escoffier63007232008-07-03 12:08:29 +000080 </Bundle-SymbolicName>
81 <Private-Package>
82 org.apache.felix.ipojo.test*
83 </Private-Package>
84 <Test-Suite>
Clement Escoffier9d012022008-07-03 14:49:52 +000085 org.apache.felix.ipojo.test.scenarios.temporal.TemporalTestSuite
Clement Escoffier63007232008-07-03 12:08:29 +000086 </Test-Suite>
87 </instructions>
88 </configuration>
89 </plugin>
90 <plugin>
91 <groupId>org.apache.felix</groupId>
92 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier63007232008-07-03 12:08:29 +000093 <executions>
94 <execution>
95 <goals>
96 <goal>ipojo-bundle</goal>
97 </goals>
98 </execution>
99 </executions>
100 </plugin>
Clement Escoffier7a5248a2010-06-22 19:40:39 +0000101
102
103 <plugin>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>maven-junit4osgi-plugin</artifactId>
106 <version>1.1.0-SNAPSHOT</version>
107 <executions>
108 <execution>
109 <goals>
110 <goal>test</goal>
111 </goals>
112 <configuration>
113 <configuration>
114 <org.osgi.http.port>8083</org.osgi.http.port>
115 </configuration>
116 </configuration>
117 </execution>
118 </executions>
119 </plugin>
Clement Escoffier63007232008-07-03 12:08:29 +0000120 </plugins>
121 </build>
122</project>