blob: d15c4267452527b64104921e1736e52db5ab5ca0 [file] [log] [blame]
Clement Escoffier03e1db72010-05-01 10:21:51 +00001<!--
Clement Escoffier87684562011-08-18 11:36:08 +00002 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
Clement Escoffier03e1db72010-05-01 10:21:51 +00009
Clement Escoffier87684562011-08-18 11:36:08 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier03e1db72010-05-01 10:21:51 +000011
Clement Escoffier87684562011-08-18 11:36:08 +000012 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.
Clement Escoffier03e1db72010-05-01 10:21:51 +000018-->
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 Escoffier87684562011-08-18 11:36:08 +000021 <parent>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 <relativePath>../../pom.xml</relativePath>
26 </parent>
Clement Escoffier03e1db72010-05-01 10:21:51 +000027
Clement Escoffier97c8dca2009-05-16 12:30:05 +000028 <modelVersion>4.0.0</modelVersion>
29 <groupId>ipojo.tests</groupId>
30 <artifactId>tests.core.factory-version</artifactId>
31 <name>iPOJO Factory Version Test Suite</name>
Clement Escoffier84075052011-02-23 10:36:42 +000032 <version>${ipojo.core.snapshot}</version>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000033 <description>Test the factory version attribute</description>
34
35 <build>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000036 <plugins>
37 <plugin>
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-compiler-plugin</artifactId>
40 <configuration>
41 <source>1.5</source>
42 <target>1.5</target>
43 </configuration>
44 </plugin>
45 <plugin>
46 <groupId>org.apache.servicemix.tooling</groupId>
47 <artifactId>depends-maven-plugin</artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000048 <version>1.2</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000049 <executions>
50 <execution>
51 <id>generate-depends-file</id>
52 <goals>
53 <goal>generate-depends-file</goal>
54 </goals>
55 </execution>
56 </executions>
57 </plugin>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000058
Clement Escoffier01f1b152009-11-24 18:55:51 +000059 <!--
60 <plugin> <groupId>org.ops4j.pax.exam</groupId>
61 <artifactId>maven-paxexam-plugin</artifactId> <executions>
62 <execution> <id>generate-paxexam-config</id> <goals>
63 <goal>generate-paxexam-config</goal> </goals> </execution>
64 </executions> <configuration> <settings> <platform>felix</platform>
65 </settings> </configuration> </plugin>
66 -->
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000067 </plugins>
68 </build>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000069
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000070 <dependencies>
71 <dependency>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier84075052011-02-23 10:36:42 +000074 <version>${ipojo.core.snapshot}</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000075 </dependency>
Clement Escoffier97c8dca2009-05-16 12:30:05 +000076
Clement Escoffierb8ec0442010-02-21 09:44:38 +000077 <!--
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000078 Pax Exam API:
79 -->
Clement Escoffierb8ec0442010-02-21 09:44:38 +000080 <dependency>
81 <groupId>org.ops4j.pax.exam</groupId>
82 <artifactId>pax-exam</artifactId>
83 <version>1.2.0</version>
84 </dependency>
85 <!--
86 During runtime Pax Exam will discover the OSGi container to use by
87 searching metadata available into classpath. Pax Exam comes with a
88 default container that uses [Pax Runner] for implementing the
89 container requirements:
90 -->
91 <dependency>
92 <groupId>org.ops4j.pax.exam</groupId>
93 <artifactId>pax-exam-container-default
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000094 </artifactId>
Clement Escoffierb8ec0442010-02-21 09:44:38 +000095 <version>1.2.0</version>
96 </dependency>
97 <!--
98 If your test code is based on JUnit you will have to have the Junit
99 support artifact:
100 -->
101 <dependency>
102 <groupId>org.ops4j.pax.exam</groupId>
103 <artifactId>pax-exam-junit</artifactId>
104 <version>1.2.0</version>
105 </dependency>
106 <dependency>
107 <groupId>junit</groupId>
108 <artifactId>junit</artifactId>
109 <version>4.5</version>
110 <type>jar</type>
111 <scope>test</scope>
112 </dependency>
113 <!-- Tinybundles -->
114 <dependency>
115 <groupId>org.ops4j.pax.swissbox</groupId>
116 <artifactId>pax-swissbox-tinybundles</artifactId>
117 <version>1.2.0</version>
118 </dependency>
119 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +0000120 <groupId>org.ow2.chameleon.testing</groupId>
121 <artifactId>tinybundles-ipojo</artifactId>
Clement Escoffierb8ec0442010-02-21 09:44:38 +0000122 </dependency>
Clement Escoffier01f1b152009-11-24 18:55:51 +0000123
124 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +0000125 <groupId>org.ow2.chameleon.testing</groupId>
126 <artifactId>osgi-helpers</artifactId>
Clement Escoffier01f1b152009-11-24 18:55:51 +0000127 </dependency>
Clement Escoffier2fdda122010-04-29 15:53:58 +0000128
Clement Escoffierb8ec0442010-02-21 09:44:38 +0000129 <dependency>
130 <groupId>org.ops4j.base</groupId>
131 <artifactId>ops4j-base-io</artifactId>
132 <version>1.2.1</version>
133 </dependency>
134 <dependency>
135 <groupId>org.ops4j.base</groupId>
136 <artifactId>ops4j-base-lang</artifactId>
137 <version>1.2.1</version>
138 </dependency>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000139 </dependencies>
Clement Escoffier97c8dca2009-05-16 12:30:05 +0000140
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000141 <repositories>
142 <repository>
143 <id>ops4j.releases</id>
144 <name>OPS4J Release</name>
145 <url> http://repository.ops4j.org/maven2/</url>
146 <releases>
147 <enabled>true</enabled>
148 </releases>
149 <snapshots>
150 <enabled>false</enabled>
151 </snapshots>
152 </repository>
153 </repositories>
Clement Escoffier97c8dca2009-05-16 12:30:05 +0000154
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +0000155</project>