blob: 9378c826dfd3047da3448606451ef65198f7ff04 [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 Escoffieraf9ad1b2009-08-14 12:11:19 +000061 </dependency>
62 <dependency>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000065 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +000066
Clement Escoffier2fdda122010-04-29 15:53:58 +000067 <!-- For external handler management -->
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000068 <dependency>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>org.apache.felix.ipojo.handler.whiteboard</artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000071 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +000072
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000073 <!--
74 Pax Exam API:
75 -->
76 <dependency>
77 <groupId>org.ops4j.pax.exam</groupId>
78 <artifactId>pax-exam</artifactId>
Clement Escoffier2252e952009-09-01 17:54:57 +000079 <version>1.1.0</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000080 </dependency>
81 <!--
82 During runtime Pax Exam will discover the OSGi container to use by
83 searching metadata available into classpath. Pax Exam comes with a
84 default container that uses [Pax Runner] for implementing the
85 container requirements:
86 -->
87 <dependency>
88 <groupId>org.ops4j.pax.exam</groupId>
89 <artifactId>pax-exam-container-default
90 </artifactId>
Clement Escoffier2252e952009-09-01 17:54:57 +000091 <version>1.1.0</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000092 </dependency>
93 <!--
94 If your test code is based on JUnit you will have to have the Junit
95 support artifact:
96 -->
97 <dependency>
98 <groupId>org.ops4j.pax.exam</groupId>
99 <artifactId>pax-exam-junit</artifactId>
Clement Escoffier2252e952009-09-01 17:54:57 +0000100 <version>1.1.0</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000101 </dependency>
102 <dependency>
103 <groupId>junit</groupId>
104 <artifactId>junit</artifactId>
105 <version>4.5</version>
106 <type>jar</type>
107 <scope>test</scope>
108 </dependency>
109 </dependencies>
Clement Escoffier34571692009-06-28 13:44:55 +0000110
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000111 <repositories>
112 <repository>
113 <id>ops4j.releases</id>
114 <name>OPS4J Release</name>
115 <url> http://repository.ops4j.org/maven2/</url>
116 <releases>
117 <enabled>true</enabled>
118 </releases>
119 <snapshots>
120 <enabled>false</enabled>
121 </snapshots>
122 </repository>
123 </repositories>
Clement Escoffier21b80822009-04-15 13:21:29 +0000124</project>