blob: cd91d49afa0a9a8af49d99b34a1fd6ee5a787258 [file] [log] [blame]
Clement Escoffiera39317c2008-07-07 16:46:09 +00001<project>
Clement Escoffierdfce6b32008-07-30 18:05:29 +00002 <groupId>ipojo.tests</groupId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +00003 <version>1.1.0-SNAPSHOT</version>
Clement Escoffiera39317c2008-07-07 16:46:09 +00004 <modelVersion>4.0.0</modelVersion>
5 <packaging>bundle</packaging>
6 <name>iPOJO White Board Pattern Handler Test Suite</name>
Clement Escoffiereb15bc62008-07-24 10:06:34 +00007 <artifactId>tests.whiteboard</artifactId>
Clement Escoffiera39317c2008-07-07 16:46:09 +00008 <dependencies>
9 <dependency>
10 <groupId>org.apache.felix</groupId>
11 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000012 <version>1.1.0-SNAPSHOT</version>
Clement Escoffiera39317c2008-07-07 16:46:09 +000013 </dependency>
14 <dependency>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>org.osgi.core</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000017 <version>1.2.0</version>
Clement Escoffiera39317c2008-07-07 16:46:09 +000018 </dependency>
19 <dependency>
20 <groupId>junit</groupId>
21 <artifactId>junit</artifactId>
22 <version>3.8.1</version>
23 </dependency>
24 <dependency>
25 <groupId>ipojo.examples</groupId>
26 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000027 <version>1.1.0-SNAPSHOT</version>
Clement Escoffiera39317c2008-07-07 16:46:09 +000028 </dependency>
29 </dependencies>
30 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000035 <version>1.4.3</version>
Clement Escoffiera39317c2008-07-07 16:46:09 +000036 <extensions>true</extensions>
37 <configuration>
38 <instructions>
39 <Private-Package>org.apache.felix.ipojo.test, org.apache.felix.ipojo.test.scenarios.util</Private-Package>
40 <Test-Suite>org.apache.felix.ipojo.test.WbpTests</Test-Suite>
41 </instructions>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000047 <version>1.1.0-SNAPSHOT</version>
Clement Escoffiera39317c2008-07-07 16:46:09 +000048 <executions>
49 <execution>
50 <goals>
51 <goal>ipojo-bundle</goal>
52 </goals>
53 <configuration>
54 <ignoreAnnotations>true</ignoreAnnotations>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59 </plugins>
60 </build>
61</project>