blob: 39971c75e37c44549426fb74a3d3e06b42be3736 [file] [log] [blame]
Clement Escoffier21b80822009-04-15 13:21:29 +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>
Clement Escoffier03e1db72010-05-01 10:21:51 +00004
5 <parent>
6 <groupId>ipojo.tests</groupId>
7 <artifactId>ipojo.tests</artifactId>
8 <version>1.5.0-SNAPSHOT</version>
9 </parent>
10
Clement Escoffier21b80822009-04-15 13:21:29 +000011 <groupId>ipojo.tests</groupId>
12 <artifactId>org.apache.felix.ipojo.tests.api</artifactId>
13 <packaging>jar</packaging>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000014 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier21b80822009-04-15 13:21:29 +000015 <name>org.apache.felix.ipojo.tests.api</name>
Clement Escoffier34571692009-06-28 13:44:55 +000016
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000017 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-compiler-plugin</artifactId>
22 <configuration>
23 <source>1.5</source>
24 <target>1.5</target>
25 </configuration>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.servicemix.tooling</groupId>
29 <artifactId>depends-maven-plugin</artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000030 <version>1.2</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000031 <executions>
32 <execution>
33 <id>generate-depends-file</id>
34 <goals>
35 <goal>generate-depends-file</goal>
36 </goals>
37 </execution>
38 </executions>
39 </plugin>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000040 </plugins>
41 </build>
Clement Escoffier34571692009-06-28 13:44:55 +000042
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000043 <dependencies>
44 <dependency>
Clement Escoffier86215df2010-04-16 13:54:16 +000045 <groupId>org.osgi</groupId>
46 <artifactId>org.osgi.core</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000047 </dependency>
48 <dependency>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000049 <groupId>org.apache.felix</groupId>
50 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +000051 <version>1.7.0-SNAPSHOT</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000052 </dependency>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.ipojo.api</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +000056 <version>1.7.0-SNAPSHOT</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000057 </dependency>
58 <dependency>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffier612297a2011-01-17 06:48:42 +000061 <version>1.7.0-SNAPSHOT</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000062 </dependency>
63 <dependency>
64 <groupId>org.apache.felix</groupId>
65 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier612297a2011-01-17 06:48:42 +000066 <version>1.7.0-SNAPSHOT</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000067 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +000068
Clement Escoffier2fdda122010-04-29 15:53:58 +000069 <!-- For external handler management -->
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000070 <dependency>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>org.apache.felix.ipojo.handler.whiteboard</artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000073 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +000074
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000075 <!--
76 Pax Exam API:
77 -->
78 <dependency>
79 <groupId>org.ops4j.pax.exam</groupId>
80 <artifactId>pax-exam</artifactId>
Clement Escoffier2252e952009-09-01 17:54:57 +000081 <version>1.1.0</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000082 </dependency>
83 <!--
84 During runtime Pax Exam will discover the OSGi container to use by
85 searching metadata available into classpath. Pax Exam comes with a
86 default container that uses [Pax Runner] for implementing the
87 container requirements:
88 -->
89 <dependency>
90 <groupId>org.ops4j.pax.exam</groupId>
91 <artifactId>pax-exam-container-default
92 </artifactId>
Clement Escoffier2252e952009-09-01 17:54:57 +000093 <version>1.1.0</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000094 </dependency>
95 <!--
96 If your test code is based on JUnit you will have to have the Junit
97 support artifact:
98 -->
99 <dependency>
100 <groupId>org.ops4j.pax.exam</groupId>
101 <artifactId>pax-exam-junit</artifactId>
Clement Escoffier2252e952009-09-01 17:54:57 +0000102 <version>1.1.0</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000103 </dependency>
104 <dependency>
105 <groupId>junit</groupId>
106 <artifactId>junit</artifactId>
107 <version>4.5</version>
108 <type>jar</type>
109 <scope>test</scope>
110 </dependency>
111 </dependencies>
Clement Escoffier34571692009-06-28 13:44:55 +0000112
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000113 <repositories>
114 <repository>
115 <id>ops4j.releases</id>
116 <name>OPS4J Release</name>
117 <url> http://repository.ops4j.org/maven2/</url>
118 <releases>
119 <enabled>true</enabled>
120 </releases>
121 <snapshots>
122 <enabled>false</enabled>
123 </snapshots>
124 </repository>
125 </repositories>
Clement Escoffier21b80822009-04-15 13:21:29 +0000126</project>