blob: b38c6a9fc91a8aa21844eda41675b73e3c19b5e3 [file] [log] [blame]
Clement Escoffiera39317c2008-07-07 16:46:09 +00001<project>
2 <groupId>ipojo.test</groupId>
3 <version>0.9.0-SNAPSHOT</version>
4 <modelVersion>4.0.0</modelVersion>
5 <packaging>bundle</packaging>
6 <name>iPOJO White Board Pattern Handler Test Suite</name>
7 <artifactId>tests.whiteboard.pattern.handler</artifactId>
8 <dependencies>
9 <dependency>
10 <groupId>org.apache.felix</groupId>
11 <artifactId>org.apache.felix.ipojo</artifactId>
12 <version>0.9.0-SNAPSHOT</version>
13 </dependency>
14 <dependency>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>org.osgi.core</artifactId>
17 <version>1.0.0</version>
18 </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>
27 <version>0.9.0-SNAPSHOT</version>
28 </dependency>
29 </dependencies>
30 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <version>1.4.0</version>
36 <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>
47 <version>0.9.0-SNAPSHOT</version>
48 <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>