blob: 2bced55f761e2c59ee8d1910decc653d4f68a155 [file] [log] [blame]
Clement Escoffierb8ec0442010-02-21 09:44:38 +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.dependency.optional</artifactId>
5 <name>iPOJO Optional Dependency Test Suite</name>
6 <version>1.5.0-SNAPSHOT</version>
7 <description>Test the optional dependencies</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 </plugins>
33 </build>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>org.apache.felix.ipojo</artifactId>
39 <version>${pom.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
44 <version>${pom.version}</version>
45 </dependency>
46 <!--
47 <dependency> <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.log</artifactId>
49 <version>1.0.0</version> </dependency>
50 -->
51
52 <!--
53 Pax Exam API:
54 -->
55 <dependency>
56 <groupId>org.ops4j.pax.exam</groupId>
57 <artifactId>pax-exam</artifactId>
58 <version>1.2.0</version>
59 </dependency>
60 <!--
61 During runtime Pax Exam will discover the OSGi container to use by
62 searching metadata available into classpath. Pax Exam comes with a
63 default container that uses [Pax Runner] for implementing the
64 container requirements:
65 -->
66 <dependency>
67 <groupId>org.ops4j.pax.exam</groupId>
68 <artifactId>pax-exam-container-default
69 </artifactId>
70 <version>1.2.0</version>
71 </dependency>
72 <!--
73 If your test code is based on JUnit you will have to have the Junit
74 support artifact:
75 -->
76 <dependency>
77 <groupId>org.ops4j.pax.exam</groupId>
78 <artifactId>pax-exam-junit</artifactId>
79 <version>1.2.0</version>
80 </dependency>
81 <dependency>
82 <groupId>junit</groupId>
83 <artifactId>junit</artifactId>
84 <version>4.5</version>
85 <type>jar</type>
86 <scope>test</scope>
87 </dependency>
88 <!-- Tinybundles -->
89 <dependency>
90 <groupId>org.ops4j.pax.swissbox</groupId>
91 <artifactId>pax-swissbox-tinybundles</artifactId>
92 <version>1.2.0</version>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>org.apache.felix.ipojo.tinybundles.bundleAsiPOJO
97 </artifactId>
98 <version>${pom.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>org.apache.felix.ipojo.test.helpers</artifactId>
103 <version>${pom.version}</version>
104 </dependency>
105 </dependencies>
106
107 <repositories>
108 <repository>
109 <id>ops4j.releases</id>
110 <name>OPS4J Release</name>
111 <url> http://repository.ops4j.org/maven2/</url>
112 <releases>
113 <enabled>true</enabled>
114 </releases>
115 <snapshots>
116 <enabled>false</enabled>
117 </snapshots>
118 </repository>
119 </repositories>
120
121</project>