blob: 847c58a1468529af3b94e16500fe3857994d694d [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>
6 <version>1.3.0-SNAPSHOT</version>
7 <name>Online Manipulator Test</name>
8 <packaging>jar</packaging>
9 <build>
10 <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>
31
32 <!-- <plugin>
33 <groupId>org.ops4j.pax.exam</groupId>
34 <artifactId>maven-paxexam-plugin</artifactId>
35 <executions>
36 <execution>
37 <id>generate-paxexam-config</id>
38 <goals>
39 <goal>generate-paxexam-config</goal>
40 </goals>
41 </execution>
42 </executions>
43 <configuration>
44 <settings>
45 <platform>felix</platform>
46 </settings>
47 </configuration>
48 </plugin> -->
49 </plugins>
50 </build>
51
52 <dependencies>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.osgi.core</artifactId>
56 <version>1.2.0</version>
57 </dependency>
58
59 <!--
60 Pax Exam API:
61 -->
62 <dependency>
63 <groupId>org.ops4j.pax.exam</groupId>
64 <artifactId>pax-exam</artifactId>
65 <version>0.4.0</version>
66 </dependency>
67 <!--
68 During runtime Pax Exam will discover the OSGi container to use by
69 searching metadata available into classpath. Pax Exam comes with a
70 default container that uses [Pax Runner] for implementing the
71 container requirements:
72 -->
73 <dependency>
74 <groupId>org.ops4j.pax.exam</groupId>
75 <artifactId>pax-exam-container-default
76 </artifactId>
77 <version>0.4.0</version>
78 </dependency>
79 <!--
80 If your test code is based on JUnit you will have to have the Junit
81 support artifact:
82 -->
83 <dependency>
84 <groupId>org.ops4j.pax.exam</groupId>
85 <artifactId>pax-exam-junit</artifactId>
86 <version>0.4.0</version>
87 </dependency>
88 <dependency>
89 <groupId>junit</groupId>
90 <artifactId>junit</artifactId>
91 <version>4.5</version>
92 <type>jar</type>
93 <scope>test</scope>
94 </dependency>
95
96
97 <!-- TinyBundle -->
98 <dependency>
99 <groupId>org.ops4j.pax.tinybundles</groupId>
100 <artifactId>pax-tinybundles-core</artifactId>
101 <version>0.5.0-SNAPSHOT</version>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>org.apache.felix.ipojo.pax.exam.target</artifactId>
106 <version>0.9.0-SNAPSHOT</version>
107 </dependency>
108 <dependency>
109 <groupId>xerces</groupId>
110 <artifactId>xercesImpl</artifactId>
111 <version>2.4.0</version>
112 </dependency>
113 <dependency>
114 <groupId>org.apache.felix</groupId>
115 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
116 <version>1.2.0</version>
117 </dependency>
118 <dependency>
119 <groupId>org.apache.felix</groupId>
120 <artifactId>org.apache.felix.ipojo</artifactId>
121 <version>1.3.0-SNAPSHOT</version>
122 </dependency>
123
124 </dependencies>
125</project>