blob: 8508f3f53b5ff239a539d1b982e142939c673e1e [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 Escoffier03e1db72010-05-01 10:21:51 +00009 </parent>
10
Clement Escoffier821ad052009-04-22 10:08:45 +000011 <groupId>org.apache.felix</groupId>
12 <artifactId>org.apache.felix.ipojo.online.manipulator.test</artifactId>
Clement Escoffier513ce452011-02-23 13:35:32 +000013 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier821ad052009-04-22 10:08:45 +000014 <name>Online Manipulator Test</name>
15 <packaging>jar</packaging>
16 <build>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000017 <plugins>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-compiler-plugin</artifactId>
21 <configuration>
22 <source>1.5</source>
23 <target>1.5</target>
24 </configuration>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.servicemix.tooling</groupId>
28 <artifactId>depends-maven-plugin</artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000029 <version>1.2</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000030 <executions>
31 <execution>
32 <id>generate-depends-file</id>
33 <goals>
34 <goal>generate-depends-file</goal>
35 </goals>
36 </execution>
37 </executions>
38 </plugin>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000039 </plugins>
40 </build>
Clement Escoffier34571692009-06-28 13:44:55 +000041
Clement Escoffierbfa74d02009-07-19 16:25:18 +000042 <dependencies>
Clement Escoffier513ce452011-02-23 13:35:32 +000043 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +000044 <groupId>org.osgi</groupId>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000045 <artifactId>org.osgi.core</artifactId>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000046 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +000047
Clement Escoffierbfa74d02009-07-19 16:25:18 +000048 <!--
49 Pax Exam API:
50 -->
51 <dependency>
52 <groupId>org.ops4j.pax.exam</groupId>
53 <artifactId>pax-exam</artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000054 <version>1.2.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000055 </dependency>
56 <!--
57 During runtime Pax Exam will discover the OSGi container to use by
58 searching metadata available into classpath. Pax Exam comes with a
59 default container that uses [Pax Runner] for implementing the
60 container requirements:
61 -->
62 <dependency>
63 <groupId>org.ops4j.pax.exam</groupId>
64 <artifactId>pax-exam-container-default
65 </artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000066 <version>1.2.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000067 </dependency>
68 <!--
69 If your test code is based on JUnit you will have to have the Junit
70 support artifact:
71 -->
Clement Escoffier513ce452011-02-23 13:35:32 +000072 <dependency>
73 <groupId>org.ops4j.pax.exam</groupId>
74 <artifactId>pax-exam-junit</artifactId>
75 <version>1.2.0</version>
76 </dependency>
77 <dependency>
78 <groupId>junit</groupId>
79 <artifactId>junit</artifactId>
80 <version>4.5</version>
81 <type>jar</type>
82 <scope>test</scope>
83 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +000084
Clement Escoffier513ce452011-02-23 13:35:32 +000085 <dependency>
86 <groupId>org.ops4j.pax.swissbox</groupId>
87 <artifactId>pax-swissbox-tinybundles</artifactId>
88 <version>1.2.0</version>
89 </dependency>
90 <dependency>
91 <groupId>xerces</groupId>
92 <artifactId>xercesImpl</artifactId>
93 <version>2.4.0</version>
94 </dependency>
95 <dependency>
96 <groupId>org.apache.felix</groupId>
97 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>org.apache.felix.ipojo</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>org.apache.felix.ipojo.online.manipulator</artifactId>
106 <version>1.7.0-SNAPSHOT</version>
107 </dependency>
Clement Escoffier34571692009-06-28 13:44:55 +0000108
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000109 </dependencies>
Clement Escoffier821ad052009-04-22 10:08:45 +0000110</project>