blob: 227ceabe4b96fd40095ce7b2137db1ea564b14d3 [file] [log] [blame]
Clement Escoffier03e1db72010-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-->
Clement Escoffier01f1b152009-11-24 18:55:51 +000019<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">
Clement Escoffier03e1db72010-05-01 10:21:51 +000021 <parent>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 </parent>
26
Clement Escoffier97c8dca2009-05-16 12:30:05 +000027 <modelVersion>4.0.0</modelVersion>
28 <groupId>ipojo.tests</groupId>
29 <artifactId>tests.core.factory-version</artifactId>
30 <name>iPOJO Factory Version Test Suite</name>
Clement Escoffier84075052011-02-23 10:36:42 +000031 <version>${ipojo.core.snapshot}</version>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000032 <description>Test the factory version attribute</description>
33
34 <build>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000035 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-compiler-plugin</artifactId>
39 <configuration>
40 <source>1.5</source>
41 <target>1.5</target>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.servicemix.tooling</groupId>
46 <artifactId>depends-maven-plugin</artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000047 <version>1.2</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000048 <executions>
49 <execution>
50 <id>generate-depends-file</id>
51 <goals>
52 <goal>generate-depends-file</goal>
53 </goals>
54 </execution>
55 </executions>
56 </plugin>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000057
Clement Escoffier01f1b152009-11-24 18:55:51 +000058 <!--
59 <plugin> <groupId>org.ops4j.pax.exam</groupId>
60 <artifactId>maven-paxexam-plugin</artifactId> <executions>
61 <execution> <id>generate-paxexam-config</id> <goals>
62 <goal>generate-paxexam-config</goal> </goals> </execution>
63 </executions> <configuration> <settings> <platform>felix</platform>
64 </settings> </configuration> </plugin>
65 -->
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000066 </plugins>
67 </build>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000068
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000069 <dependencies>
70 <dependency>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier84075052011-02-23 10:36:42 +000073 <version>${ipojo.core.snapshot}</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000074 </dependency>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000075
Clement Escoffierb8ec0442010-02-21 09:44:38 +000076 <!--
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000077 Pax Exam API:
78 -->
Clement Escoffierb8ec0442010-02-21 09:44:38 +000079 <dependency>
80 <groupId>org.ops4j.pax.exam</groupId>
81 <artifactId>pax-exam</artifactId>
82 <version>1.2.0</version>
83 </dependency>
84 <!--
85 During runtime Pax Exam will discover the OSGi container to use by
86 searching metadata available into classpath. Pax Exam comes with a
87 default container that uses [Pax Runner] for implementing the
88 container requirements:
89 -->
90 <dependency>
91 <groupId>org.ops4j.pax.exam</groupId>
92 <artifactId>pax-exam-container-default
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000093 </artifactId>
Clement Escoffierb8ec0442010-02-21 09:44:38 +000094 <version>1.2.0</version>
95 </dependency>
96 <!--
97 If your test code is based on JUnit you will have to have the Junit
98 support artifact:
99 -->
100 <dependency>
101 <groupId>org.ops4j.pax.exam</groupId>
102 <artifactId>pax-exam-junit</artifactId>
103 <version>1.2.0</version>
104 </dependency>
105 <dependency>
106 <groupId>junit</groupId>
107 <artifactId>junit</artifactId>
108 <version>4.5</version>
109 <type>jar</type>
110 <scope>test</scope>
111 </dependency>
112 <!-- Tinybundles -->
113 <dependency>
114 <groupId>org.ops4j.pax.swissbox</groupId>
115 <artifactId>pax-swissbox-tinybundles</artifactId>
116 <version>1.2.0</version>
117 </dependency>
118 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +0000119 <groupId>org.ow2.chameleon.testing</groupId>
120 <artifactId>tinybundles-ipojo</artifactId>
Clement Escoffierb8ec0442010-02-21 09:44:38 +0000121 </dependency>
Clement Escoffier01f1b152009-11-24 18:55:51 +0000122
123 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +0000124 <groupId>org.ow2.chameleon.testing</groupId>
125 <artifactId>osgi-helpers</artifactId>
Clement Escoffier01f1b152009-11-24 18:55:51 +0000126 </dependency>
Clement Escoffier2fdda122010-04-29 15:53:58 +0000127
Clement Escoffierb8ec0442010-02-21 09:44:38 +0000128 <dependency>
129 <groupId>org.ops4j.base</groupId>
130 <artifactId>ops4j-base-io</artifactId>
131 <version>1.2.1</version>
132 </dependency>
133 <dependency>
134 <groupId>org.ops4j.base</groupId>
135 <artifactId>ops4j-base-lang</artifactId>
136 <version>1.2.1</version>
137 </dependency>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000138 </dependencies>
Clement Escoffier97c8dca2009-05-16 12:30:05 +0000139
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000140 <repositories>
141 <repository>
142 <id>ops4j.releases</id>
143 <name>OPS4J Release</name>
144 <url> http://repository.ops4j.org/maven2/</url>
145 <releases>
146 <enabled>true</enabled>
147 </releases>
148 <snapshots>
149 <enabled>false</enabled>
150 </snapshots>
151 </repository>
152 </repositories>
Clement Escoffier97c8dca2009-05-16 12:30:05 +0000153
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000154</project>