blob: c33ffca4030594d704313359ec2d340c6db68836 [file] [log] [blame]
Clement Escoffierc9c352e2009-11-24 18:54:32 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>org.apache.felix.ipojo.test.helpers</artifactId>
6 <packaging>bundle</packaging>
7 <version>1.5.0-SNAPSHOT</version>
8 <name>iPOJO Test Helpers</name>
9
Clement Escoffier2fdda122010-04-29 15:53:58 +000010
Clement Escoffier769c9942009-12-26 11:15:42 +000011
Clement Escoffierc9c352e2009-11-24 18:54:32 +000012 <dependencies>
13 <dependency>
14 <groupId>org.apache.felix</groupId>
15 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +000016 <version>1.6.0</version>
Clement Escoffierc9c352e2009-11-24 18:54:32 +000017 </dependency>
18 <dependency>
19 <groupId>org.osgi</groupId>
20 <artifactId>org.osgi.core</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +000021 <version>4.2.0</version>
Clement Escoffierc9c352e2009-11-24 18:54:32 +000022 </dependency>
23 <dependency>
24 <groupId>junit</groupId>
25 <artifactId>junit</artifactId>
26 <version>4.7</version>
27 <type>jar</type>
28 <scope>compile</scope>
29 </dependency>
30 </dependencies>
Clement Escoffier769c9942009-12-26 11:15:42 +000031 <parent>
32 <artifactId>felix-parent</artifactId>
33 <groupId>org.apache.felix</groupId>
Clement Escoffier86215df2010-04-16 13:54:16 +000034 <version>1.2.1</version>
Clement Escoffier769c9942009-12-26 11:15:42 +000035 </parent>
Clement Escoffierc9c352e2009-11-24 18:54:32 +000036
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-compiler-plugin</artifactId>
42 <configuration>
43 <source>1.5</source>
44 <target>1.5</target>
45 </configuration>
46 </plugin>
47
48 <plugin>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-bundle-plugin</artifactId>
51 <extensions>true</extensions>
52 <configuration>
53 <instructions>
54 <Export-Package>org.apache.felix.ipojo.test.helpers
55 </Export-Package>
56 </instructions>
57 </configuration>
58 </plugin>
59
60 </plugins>
61 </build>
62
63
64
65</project>