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