blob: 8e8ae039f1837f07f7709f8724e04a84d4cc19c7 [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"
Clement Escoffier4b5d3d52011-12-03 10:23:24 +00002 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>
Clement Escoffier03e1db72010-05-01 10:21:51 +00004
Clement Escoffier4b5d3d52011-12-03 10:23:24 +00005 <parent>
6 <groupId>ipojo.tests</groupId>
7 <artifactId>ipojo.tests</artifactId>
8 <version>1.5.0-SNAPSHOT</version>
9 <relativePath>../pom.xml</relativePath>
10 </parent>
Clement Escoffier03e1db72010-05-01 10:21:51 +000011
Clement Escoffier513ce452011-02-23 13:35:32 +000012 <groupId>org.apache.felix</groupId>
Clement Escoffier4b5d3d52011-12-03 10:23:24 +000013 <artifactId>org.apache.felix.ipojo.online.manipulator.test</artifactId>
Clement Escoffier513ce452011-02-23 13:35:32 +000014 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier4b5d3d52011-12-03 10:23:24 +000015 <name>Online Manipulator Test</name>
16 <packaging>jar</packaging>
17 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-compiler-plugin</artifactId>
22 <configuration>
23 <source>1.5</source>
24 <target>1.5</target>
25 </configuration>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.servicemix.tooling</groupId>
29 <artifactId>depends-maven-plugin</artifactId>
30 <version>1.2</version>
31 <executions>
32 <execution>
33 <id>generate-depends-file</id>
34 <goals>
35 <goal>generate-depends-file</goal>
36 </goals>
37 </execution>
38 </executions>
39 </plugin>
40 </plugins>
41 </build>
Clement Escoffier34571692009-06-28 13:44:55 +000042
Clement Escoffier4b5d3d52011-12-03 10:23:24 +000043 <dependencies>
44 <dependency>
45 <groupId>org.osgi</groupId>
46 <artifactId>org.osgi.core</artifactId>
47 </dependency>
48
49 <!--
50 Pax Exam API:
51 -->
52 <dependency>
53 <groupId>org.ops4j.pax.exam</groupId>
54 <artifactId>pax-exam</artifactId>
55 <version>1.2.0</version>
56 </dependency>
57 <!--
58 During runtime Pax Exam will discover the OSGi container to use by
59 searching metadata available into classpath. Pax Exam comes with a
60 default container that uses [Pax Runner] for implementing the
61 container requirements:
62 -->
63 <dependency>
64 <groupId>org.ops4j.pax.exam</groupId>
65 <artifactId>pax-exam-container-default
66 </artifactId>
67 <version>1.2.0</version>
68 </dependency>
69 <!--
70 If your test code is based on JUnit you will have to have the Junit
71 support artifact:
72 -->
73 <dependency>
74 <groupId>org.ops4j.pax.exam</groupId>
75 <artifactId>pax-exam-junit</artifactId>
76 <version>1.2.0</version>
77 </dependency>
78 <dependency>
79 <groupId>junit</groupId>
80 <artifactId>junit</artifactId>
81 <version>4.5</version>
82 <type>jar</type>
83 <scope>test</scope>
84 </dependency>
85
86 <dependency>
87 <groupId>org.ops4j.pax.swissbox</groupId>
88 <artifactId>pax-swissbox-tinybundles</artifactId>
89 <version>1.2.0</version>
90 </dependency>
91 <dependency>
92 <groupId>xerces</groupId>
93 <artifactId>xercesImpl</artifactId>
94 <version>2.4.0</version>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
99 </dependency>
100 <dependency>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>org.apache.felix.ipojo</artifactId>
103 <version>${ipojo.core.snapshot}</version>
104 </dependency>
105 </dependencies>
Clement Escoffier821ad052009-04-22 10:08:45 +0000106</project>