blob: 1fb17e85a5cc36218be6550fc9f5b974510f6404 [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>
Clement Escoffier03e1db72010-05-01 10:21:51 +00004
5 <parent>
Clement Escoffier513ce452011-02-23 13:35:32 +00006 <groupId>ipojo.tests</groupId>
7 <artifactId>ipojo.tests</artifactId>
8 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier87684562011-08-18 11:36:08 +00009 <relativePath>../pom.xml</relativePath>
Clement Escoffier03e1db72010-05-01 10:21:51 +000010 </parent>
11
Clement Escoffier821ad052009-04-22 10:08:45 +000012 <groupId>org.apache.felix</groupId>
13 <artifactId>org.apache.felix.ipojo.online.manipulator.test</artifactId>
Clement Escoffier513ce452011-02-23 13:35:32 +000014 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier821ad052009-04-22 10:08:45 +000015 <name>Online Manipulator Test</name>
16 <packaging>jar</packaging>
17 <build>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000018 <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>
Clement Escoffier03e1db72010-05-01 10:21:51 +000030 <version>1.2</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000031 <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>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000040 </plugins>
41 </build>
Clement Escoffier34571692009-06-28 13:44:55 +000042
Clement Escoffierbfa74d02009-07-19 16:25:18 +000043 <dependencies>
Clement Escoffier513ce452011-02-23 13:35:32 +000044 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +000045 <groupId>org.osgi</groupId>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000046 <artifactId>org.osgi.core</artifactId>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000047 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +000048
Clement Escoffierbfa74d02009-07-19 16:25:18 +000049 <!--
50 Pax Exam API:
51 -->
52 <dependency>
53 <groupId>org.ops4j.pax.exam</groupId>
54 <artifactId>pax-exam</artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000055 <version>1.2.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000056 </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>
Clement Escoffier03e1db72010-05-01 10:21:51 +000067 <version>1.2.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000068 </dependency>
69 <!--
70 If your test code is based on JUnit you will have to have the Junit
71 support artifact:
72 -->
Clement Escoffier513ce452011-02-23 13:35:32 +000073 <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>
Clement Escoffier34571692009-06-28 13:44:55 +000085
Clement Escoffier513ce452011-02-23 13:35:32 +000086 <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 </dependency>
104 <dependency>
105 <groupId>org.apache.felix</groupId>
106 <artifactId>org.apache.felix.ipojo.online.manipulator</artifactId>
107 <version>1.7.0-SNAPSHOT</version>
108 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +0000109
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000110 </dependencies>
Clement Escoffier821ad052009-04-22 10:08:45 +0000111</project>