blob: 89457c10c8a427094eff608471c394ed3504172d [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>
Clement Escoffier34571692009-06-28 13:44:55 +00009
Clement Escoffier21b80822009-04-15 13:21:29 +000010 <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>
Clement Escoffier34571692009-06-28 13:44:55 +000032
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>
Clement Escoffier34571692009-06-28 13:44:55 +000051 </build>
52
Clement Escoffier21b80822009-04-15 13:21:29 +000053 <dependencies>
54 <dependency>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000057 <version>${pom.version}</version>
Clement Escoffier21b80822009-04-15 13:21:29 +000058 </dependency>
59 <dependency>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>org.apache.felix.ipojo.api</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000062 <version>${pom.version}</version>
Clement Escoffier21b80822009-04-15 13:21:29 +000063 </dependency>
64 <dependency>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000067 <version>${pom.version}</version>
Clement Escoffier21b80822009-04-15 13:21:29 +000068 </dependency>
69 <dependency>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000072 <version>${pom.version}</version>
Clement Escoffier21b80822009-04-15 13:21:29 +000073 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +000074
Clement Escoffier6a7cc2f2009-04-17 14:46:05 +000075 <!-- For external handlermanagement -->
76 <dependency>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.apache.felix.ipojo.handler.whiteboard</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000079 <version>${pom.version}</version>
Clement Escoffier34571692009-06-28 13:44:55 +000080 </dependency>
81
Clement Escoffier21b80822009-04-15 13:21:29 +000082 <!--
83 Pax Exam API:
84 -->
85 <dependency>
86 <groupId>org.ops4j.pax.exam</groupId>
87 <artifactId>pax-exam</artifactId>
Clement Escoffier34571692009-06-28 13:44:55 +000088 <version>0.6.0</version>
Clement Escoffier21b80822009-04-15 13:21:29 +000089 </dependency>
90 <!--
91 During runtime Pax Exam will discover the OSGi container to use by
92 searching metadata available into classpath. Pax Exam comes with a
93 default container that uses [Pax Runner] for implementing the
94 container requirements:
95 -->
96 <dependency>
97 <groupId>org.ops4j.pax.exam</groupId>
98 <artifactId>pax-exam-container-default
99 </artifactId>
Clement Escoffier34571692009-06-28 13:44:55 +0000100 <version>0.6.0</version>
Clement Escoffier21b80822009-04-15 13:21:29 +0000101 </dependency>
102 <!--
103 If your test code is based on JUnit you will have to have the Junit
104 support artifact:
105 -->
106 <dependency>
107 <groupId>org.ops4j.pax.exam</groupId>
108 <artifactId>pax-exam-junit</artifactId>
Clement Escoffier34571692009-06-28 13:44:55 +0000109 <version>0.6.0</version>
Clement Escoffier21b80822009-04-15 13:21:29 +0000110 </dependency>
111 <dependency>
112 <groupId>junit</groupId>
113 <artifactId>junit</artifactId>
114 <version>4.5</version>
115 <type>jar</type>
116 <scope>test</scope>
Clement Escoffier6a7cc2f2009-04-17 14:46:05 +0000117 </dependency>
Clement Escoffier21b80822009-04-15 13:21:29 +0000118 </dependencies>
Clement Escoffier34571692009-06-28 13:44:55 +0000119
Clement Escoffier21b80822009-04-15 13:21:29 +0000120 <repositories>
121 <repository>
122 <id>ops4j.releases</id>
123 <name>OPS4J Release</name>
124 <url> http://repository.ops4j.org/maven2/</url>
125 <releases>
126 <enabled>true</enabled>
127 </releases>
128 <snapshots>
129 <enabled>false</enabled>
130 </snapshots>
131 </repository>
132 </repositories>
133</project>