blob: 085bb02b0bd03b60c9f742af42483aeae05a645c [file] [log] [blame]
Clement Escoffier821ad052009-04-22 10:08:45 +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>org.apache.felix</groupId>
5 <artifactId>org.apache.felix.ipojo.online.manipulator.test</artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +00006 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier821ad052009-04-22 10:08:45 +00007 <name>Online Manipulator Test</name>
8 <packaging>jar</packaging>
9 <build>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000010 <plugins>
11 <plugin>
12 <groupId>org.apache.maven.plugins</groupId>
13 <artifactId>maven-compiler-plugin</artifactId>
14 <configuration>
15 <source>1.5</source>
16 <target>1.5</target>
17 </configuration>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.servicemix.tooling</groupId>
21 <artifactId>depends-maven-plugin</artifactId>
22 <executions>
23 <execution>
24 <id>generate-depends-file</id>
25 <goals>
26 <goal>generate-depends-file</goal>
27 </goals>
28 </execution>
29 </executions>
30 </plugin>
Clement Escoffier34571692009-06-28 13:44:55 +000031
Clement Escoffierbfa74d02009-07-19 16:25:18 +000032 <!--
33 <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>
Clement Escoffier34571692009-06-28 13:44:55 +000052
Clement Escoffierbfa74d02009-07-19 16:25:18 +000053 <dependencies>
54 <dependency>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>org.osgi.core</artifactId>
57 <version>1.2.0</version>
58 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +000059
Clement Escoffierbfa74d02009-07-19 16:25:18 +000060 <!--
61 Pax Exam API:
62 -->
63 <dependency>
64 <groupId>org.ops4j.pax.exam</groupId>
65 <artifactId>pax-exam</artifactId>
Clement Escoffier2252e952009-09-01 17:54:57 +000066 <version>1.1.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000067 </dependency>
68 <!--
69 During runtime Pax Exam will discover the OSGi container to use by
70 searching metadata available into classpath. Pax Exam comes with a
71 default container that uses [Pax Runner] for implementing the
72 container requirements:
73 -->
74 <dependency>
75 <groupId>org.ops4j.pax.exam</groupId>
76 <artifactId>pax-exam-container-default
77 </artifactId>
Clement Escoffier2252e952009-09-01 17:54:57 +000078 <version>1.1.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000079 </dependency>
80 <!--
81 If your test code is based on JUnit you will have to have the Junit
82 support artifact:
83 -->
84 <dependency>
85 <groupId>org.ops4j.pax.exam</groupId>
86 <artifactId>pax-exam-junit</artifactId>
Clement Escoffier2252e952009-09-01 17:54:57 +000087 <version>1.1.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000088 </dependency>
89 <dependency>
90 <groupId>junit</groupId>
91 <artifactId>junit</artifactId>
92 <version>4.5</version>
93 <type>jar</type>
94 <scope>test</scope>
95 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +000096
97
Clement Escoffierbfa74d02009-07-19 16:25:18 +000098 <!-- TinyBundle -->
99 <dependency>
100 <groupId>org.ops4j.pax.swissbox</groupId>
101 <artifactId>pax-swissbox-tinybundles</artifactId>
102 <version>1.0.0</version>
103 </dependency>
104 <dependency>
105 <groupId>org.apache.felix</groupId>
106 <artifactId>org.apache.felix.ipojo.tinybundles.bundleAsiPOJO</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +0000107 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000108 </dependency>
109 <dependency>
110 <groupId>xerces</groupId>
111 <artifactId>xercesImpl</artifactId>
112 <version>2.4.0</version>
113 </dependency>
114 <dependency>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +0000117 <version>1.6.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000118 </dependency>
119 <dependency>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +0000122 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000123 </dependency>
124 <dependency>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>org.apache.felix.ipojo.online.manipulator</artifactId>
Clement Escoffier2fdda122010-04-29 15:53:58 +0000127 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000128 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +0000129
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000130 </dependencies>
Clement Escoffier821ad052009-04-22 10:08:45 +0000131</project>