blob: 6424e52d3e35fb2d96d3e1be0fb406d6311d568a [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>
4 <groupId>ipojo.tests</groupId>
5 <artifactId>org.apache.felix.ipojo.tests.api</artifactId>
6 <packaging>jar</packaging>
7 <version>1.3.0-SNAPSHOT</version>
8 <name>org.apache.felix.ipojo.tests.api</name>
9
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.maven.plugins</groupId>
14 <artifactId>maven-compiler-plugin</artifactId>
15 <configuration>
16 <source>1.5</source>
17 <target>1.5</target>
18 </configuration>
19 </plugin>
20 <!-- <plugin>
21 <groupId>org.ops4j.pax.exam</groupId>
22 <artifactId>maven-paxexam-plugin</artifactId>
23 <executions>
24 <execution>
25 <id>generate-paxexam-config</id>
26 <goals>
27 <goal>generate-paxexam-config</goal>
28 </goals>
29 </execution>
30 </executions>
31 <configuration>
32 <settings>
33 <platform>felix</platform>
34 </settings>
35 </configuration>
36 </plugin> -->
37 </plugins>
38 </build>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.ipojo</artifactId>
44 <version>1.3.0-SNAPSHOT</version>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.ipojo.api</artifactId>
49 <version>1.3.0-SNAPSHOT</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.apache.felix.ipojo.composite</artifactId>
54 <version>1.3.0-SNAPSHOT</version>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
59 <version>1.3.0-SNAPSHOT</version>
60 </dependency>
61
62
63 <!--
64 Pax Exam API:
65 -->
66 <dependency>
67 <groupId>org.ops4j.pax.exam</groupId>
68 <artifactId>pax-exam</artifactId>
69 <version>0.4.0</version>
70 </dependency>
71 <!--
72 During runtime Pax Exam will discover the OSGi container to use by
73 searching metadata available into classpath. Pax Exam comes with a
74 default container that uses [Pax Runner] for implementing the
75 container requirements:
76 -->
77 <dependency>
78 <groupId>org.ops4j.pax.exam</groupId>
79 <artifactId>pax-exam-container-default
80 </artifactId>
81 <version>0.4.0</version>
82 </dependency>
83 <!--
84 If your test code is based on JUnit you will have to have the Junit
85 support artifact:
86 -->
87 <dependency>
88 <groupId>org.ops4j.pax.exam</groupId>
89 <artifactId>pax-exam-junit</artifactId>
90 <version>0.4.0</version>
91 </dependency>
92 <dependency>
93 <groupId>junit</groupId>
94 <artifactId>junit</artifactId>
95 <version>4.5</version>
96 <type>jar</type>
97 <scope>test</scope>
98 </dependency>
99 </dependencies>
100
101 <repositories>
102 <repository>
103 <id>ops4j.releases</id>
104 <name>OPS4J Release</name>
105 <url> http://repository.ops4j.org/maven2/</url>
106 <releases>
107 <enabled>true</enabled>
108 </releases>
109 <snapshots>
110 <enabled>false</enabled>
111 </snapshots>
112 </repository>
113 </repositories>
114</project>