blob: c8e4928e869061b88ece9dd4db33cf5c99768c56 [file] [log] [blame]
Clement Escoffier97c8dca2009-05-16 12:30:05 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>ipojo.tests</groupId>
4 <artifactId>tests.core.factory-version</artifactId>
5 <name>iPOJO Factory Version Test Suite</name>
6 <version>1.3.0-SNAPSHOT</version>
7 <description>Test the factory version attribute</description>
8
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.apache.felix.ipojo</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000056 <version>${pom.version}</version>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000057 </dependency>
58
59 <!--
60 Pax Exam API:
61 -->
62 <dependency>
63 <groupId>org.ops4j.pax.exam</groupId>
64 <artifactId>pax-exam</artifactId>
Clement Escoffier34571692009-06-28 13:44:55 +000065 <version>0.6.0</version>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000066 </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>
Clement Escoffier34571692009-06-28 13:44:55 +000077 <version>0.6.0</version>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000078 </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>
Clement Escoffier34571692009-06-28 13:44:55 +000086 <version>0.6.0</version>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000087 </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 <!-- Tinybundles -->
Clement Escoffier34571692009-06-28 13:44:55 +000096 <dependency>
97 <groupId>org.ops4j.pax.swissbox</groupId>
98 <artifactId>pax-swissbox-tinybundles</artifactId>
99 <version>1.0.0</version>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>org.apache.felix.ipojo.tinybundles.bundleAsiPOJO</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +0000104 <version>${pom.version}</version>
Clement Escoffier34571692009-06-28 13:44:55 +0000105 </dependency>
Clement Escoffier97c8dca2009-05-16 12:30:05 +0000106 </dependencies>
107
108 <repositories>
109 <repository>
110 <id>ops4j.releases</id>
111 <name>OPS4J Release</name>
112 <url> http://repository.ops4j.org/maven2/</url>
113 <releases>
114 <enabled>true</enabled>
115 </releases>
116 <snapshots>
117 <enabled>false</enabled>
118 </snapshots>
119 </repository>
120 </repositories>
121
122</project>