blob: 89c8456e51edaaf1685f0e2a7d9f453dc6c0a5af [file] [log] [blame]
Clement Escoffierdfce6b32008-07-30 18:05:29 +00001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <groupId>ipojo.tests</groupId>
6 <version>0.9.0-SNAPSHOT</version>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>bundle</packaging>
9 <name>iPOJO Event Admin Handler Test Suite</name>
10 <artifactId>tests.eventadmin.handler</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>org.apache.felix</groupId>
14 <artifactId>org.apache.felix.ipojo</artifactId>
15 <version>0.9.0-SNAPSHOT</version>
16 </dependency>
17 <dependency>
18 <groupId>org.apache.felix</groupId>
19 <artifactId>org.osgi.core</artifactId>
20 <version>1.0.0</version>
21 </dependency>
22 <dependency>
23 <groupId>org.apache.felix</groupId>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000024 <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000025 <version>0.9.0-SNAPSHOT</version>
26 </dependency>
27 <dependency>
28 <groupId>junit</groupId>
29 <artifactId>junit</artifactId>
30 <version>3.8.1</version>
31 </dependency>
32 <dependency>
33 <groupId>ipojo.examples</groupId>
34 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
35 <version>0.9.0-SNAPSHOT</version>
36 </dependency>
37 </dependencies>
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000043 <version>1.4.2</version>
Clement Escoffierdfce6b32008-07-30 18:05:29 +000044 <extensions>true</extensions>
45 <configuration>
46 <instructions>
47 <Private-Package>org.apache.felix.ipojo.test.*
48 </Private-Package>
49 <Test-Suite>
50 org.apache.felix.ipojo.test.EahTestSuite
51 </Test-Suite>
52 </instructions>
53 </configuration>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-ipojo-plugin</artifactId>
58 <version>0.9.0-SNAPSHOT</version>
59 <executions>
60 <execution>
61 <goals>
62 <goal>ipojo-bundle</goal>
63 </goals>
64 <configuration>
65 <ignoreAnnotations>true</ignoreAnnotations>
66 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70 </plugins>
71 </build>
72</project>