blob: 46898ceb099914ecf7f4ed9a3cfd2bd8d5be22e9 [file] [log] [blame]
Clement Escoffierf4622e52010-05-01 10:21:51 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 </parent>
Clement Escoffierc6673552010-02-21 09:44:38 +000026 <modelVersion>4.0.0</modelVersion>
27 <groupId>ipojo.tests</groupId>
28 <artifactId>tests.core.dependency.optional</artifactId>
29 <name>iPOJO Optional Dependency Test Suite</name>
30 <version>1.5.0-SNAPSHOT</version>
31 <description>Test the optional dependencies</description>
32
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
38 <configuration>
39 <source>1.5</source>
40 <target>1.5</target>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.servicemix.tooling</groupId>
45 <artifactId>depends-maven-plugin</artifactId>
Clement Escoffierf4622e52010-05-01 10:21:51 +000046 <version>1.2</version>
Clement Escoffierc6673552010-02-21 09:44:38 +000047 <executions>
48 <execution>
49 <id>generate-depends-file</id>
50 <goals>
51 <goal>generate-depends-file</goal>
52 </goals>
53 </execution>
54 </executions>
55 </plugin>
56
57 </plugins>
58 </build>
59
60 <dependencies>
61 <dependency>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier86ea4652010-04-29 15:53:58 +000064 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierc6673552010-02-21 09:44:38 +000065 </dependency>
66 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffierc6673552010-02-21 09:44:38 +000069 </dependency>
70 <!--
Clement Escoffierc6673552010-02-21 09:44:38 +000071 Pax Exam API:
72 -->
73 <dependency>
74 <groupId>org.ops4j.pax.exam</groupId>
75 <artifactId>pax-exam</artifactId>
76 <version>1.2.0</version>
77 </dependency>
78 <!--
79 During runtime Pax Exam will discover the OSGi container to use by
80 searching metadata available into classpath. Pax Exam comes with a
81 default container that uses [Pax Runner] for implementing the
82 container requirements:
83 -->
84 <dependency>
85 <groupId>org.ops4j.pax.exam</groupId>
86 <artifactId>pax-exam-container-default
87 </artifactId>
88 <version>1.2.0</version>
89 </dependency>
90 <!--
91 If your test code is based on JUnit you will have to have the Junit
92 support artifact:
93 -->
94 <dependency>
95 <groupId>org.ops4j.pax.exam</groupId>
96 <artifactId>pax-exam-junit</artifactId>
97 <version>1.2.0</version>
98 </dependency>
99 <dependency>
100 <groupId>junit</groupId>
101 <artifactId>junit</artifactId>
102 <version>4.5</version>
103 <type>jar</type>
104 <scope>test</scope>
105 </dependency>
106 <!-- Tinybundles -->
107 <dependency>
108 <groupId>org.ops4j.pax.swissbox</groupId>
109 <artifactId>pax-swissbox-tinybundles</artifactId>
110 <version>1.2.0</version>
111 </dependency>
112 <dependency>
Clement Escoffierf4622e52010-05-01 10:21:51 +0000113 <groupId>org.ow2.chameleon.testing</groupId>
114 <artifactId>tinybundles-ipojo</artifactId>
Clement Escoffierc6673552010-02-21 09:44:38 +0000115 </dependency>
116 <dependency>
Clement Escoffierf4622e52010-05-01 10:21:51 +0000117 <groupId>org.ow2.chameleon.testing</groupId>
118 <artifactId>osgi-helpers</artifactId>
Clement Escoffierc6673552010-02-21 09:44:38 +0000119 </dependency>
120 </dependencies>
121
122 <repositories>
123 <repository>
124 <id>ops4j.releases</id>
125 <name>OPS4J Release</name>
126 <url> http://repository.ops4j.org/maven2/</url>
127 <releases>
128 <enabled>true</enabled>
129 </releases>
130 <snapshots>
131 <enabled>false</enabled>
132 </snapshots>
133 </repository>
134 </repositories>
135
136</project>