blob: 5a0296d47acc505bb5cf76bb401f464a10f225a2 [file] [log] [blame]
Marcel Offermans90f0e9a2012-06-20 13:27:02 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
3 license agreements. See the NOTICE file distributed with this work for additional
4 information regarding copyright ownership. The ASF licenses this file to
5 you under the Apache License, Version 2.0 (the "License"); you may not use
6 this file except in compliance with the License. You may obtain a copy of
7 the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
8 by applicable law or agreed to in writing, software distributed under the
9 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
10 OF ANY KIND, either express or implied. See the License for the specific
11 language governing permissions and limitations under the License. -->
12<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
14 <modelVersion>4.0.0</modelVersion>
15 <parent>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>felix-parent</artifactId>
asf-sync-process9f9a1322015-11-24 11:06:57 +000018 <version>3</version>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000019 <relativePath>../../pom/pom.xml</relativePath>
20 </parent>
21 <properties>
22 <osgi.version>4.2.0</osgi.version>
Jan Willem Janssen03a98a92015-11-24 16:15:35 +000023 <pax.exam.version>3.6.0</pax.exam.version>
Jan Willem Janssenc098eb72014-04-15 08:37:11 +000024 <pax.url.version>1.6.0</pax.url.version>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000025 </properties>
26 <name>Apache Felix DeploymentAdmin Integration Tests</name>
27 <version>0.1.1-SNAPSHOT</version>
28 <artifactId>org.apache.felix.deploymentadmin.itest</artifactId>
29 <packaging>jar</packaging>
30 <dependencies>
Jan Willem Janssen25376b32013-07-19 11:44:46 +000031
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000032 <dependency>
Jan Willem Janssen25376b32013-07-19 11:44:46 +000033 <groupId>org.apache.felix</groupId>
34 <artifactId>org.apache.felix.framework</artifactId>
Jan Willem Janssen4b034332015-01-14 22:02:18 +000035 <version>4.4.1</version>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000036 <scope>test</scope>
37 </dependency>
Jan Willem Janssen25376b32013-07-19 11:44:46 +000038
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000039 <dependency>
40 <groupId>org.osgi</groupId>
41 <artifactId>org.osgi.compendium</artifactId>
42 <version>${osgi.version}</version>
43 <scope>test</scope>
44 </dependency>
Jan Willem Janssen25376b32013-07-19 11:44:46 +000045
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.dependencymanager</artifactId>
Jan Willem Janssen03a98a92015-11-24 16:15:35 +000049 <version>4.1.1</version>
Jan Willem Janssen25376b32013-07-19 11:44:46 +000050 <scope>test</scope>
51 </dependency>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000052 <dependency>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>org.apache.felix.deploymentadmin</artifactId>
Jan Willem Janssenc098eb72014-04-15 08:37:11 +000055 <version>0.9.8-SNAPSHOT</version>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000056 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>org.apache.felix.metatype</artifactId>
Jan Willem Janssen03a98a92015-11-24 16:15:35 +000061 <version>1.1.2</version>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000062 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>org.apache.felix.configadmin</artifactId>
Jan Willem Janssenc098eb72014-04-15 08:37:11 +000067 <version>1.8.0</version>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000068 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>org.apache.felix.eventadmin</artifactId>
Jan Willem Janssen25376b32013-07-19 11:44:46 +000073 <version>1.3.2</version>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.apache.felix.log</artifactId>
79 <version>1.0.1</version>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000080 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>junit</groupId>
84 <artifactId>junit</artifactId>
Jan Willem Janssen03a98a92015-11-24 16:15:35 +000085 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>commons-codec</groupId>
89 <artifactId>commons-codec</artifactId>
90 <version>1.10</version>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +000091 <scope>test</scope>
92 </dependency>
93
94 <dependency>
95 <groupId>org.ops4j.pax.exam</groupId>
96 <artifactId>pax-exam-junit4</artifactId>
97 <version>${pax.exam.version}</version>
98 <scope>test</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.ops4j.pax.exam</groupId>
Jan Willem Janssen25376b32013-07-19 11:44:46 +0000102 <artifactId>pax-exam-container-native</artifactId>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +0000103 <version>${pax.exam.version}</version>
104 <scope>test</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.ops4j.pax.exam</groupId>
108 <artifactId>pax-exam-link-mvn</artifactId>
109 <version>${pax.exam.version}</version>
110 <scope>test</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.ops4j.pax.url</groupId>
114 <artifactId>pax-url-aether</artifactId>
Jan Willem Janssen25376b32013-07-19 11:44:46 +0000115 <version>${pax.url.version}</version>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +0000116 <scope>test</scope>
117 </dependency>
118
119 <dependency>
Jan Willem Janssenf883f0e2016-01-14 16:20:31 +0000120 <groupId>org.bouncycastle</groupId>
121 <artifactId>bcprov-jdk15on</artifactId>
122 <version>1.54</version>
123 <scope>test</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.bouncycastle</groupId>
127 <artifactId>bcpkix-jdk15on</artifactId>
128 <version>1.54</version>
129 <scope>test</scope>
130 </dependency>
131 <dependency>
Jan Willem Janssen25376b32013-07-19 11:44:46 +0000132 <groupId>ch.qos.logback</groupId>
133 <artifactId>logback-core</artifactId>
Jan Willem Janssen03a98a92015-11-24 16:15:35 +0000134 <version>1.1.3</version>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +0000135 <scope>test</scope>
136 </dependency>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +0000137 <dependency>
Jan Willem Janssen25376b32013-07-19 11:44:46 +0000138 <groupId>ch.qos.logback</groupId>
139 <artifactId>logback-classic</artifactId>
Jan Willem Janssen03a98a92015-11-24 16:15:35 +0000140 <version>1.1.3</version>
Jan Willem Janssen25376b32013-07-19 11:44:46 +0000141 <scope>test</scope>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +0000142 </dependency>
143
144 </dependencies>
145 <build>
146 <plugins>
147 <plugin>
Jan Willem Janssen25376b32013-07-19 11:44:46 +0000148 <groupId>org.apache.servicemix.tooling</groupId>
149 <artifactId>depends-maven-plugin</artifactId>
150 <executions>
151 <execution>
152 <id>generate-depends-file</id>
153 <goals>
154 <goal>generate-depends-file</goal>
155 </goals>
156 </execution>
157 </executions>
158 </plugin>
159 <plugin>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +0000160 <groupId>org.apache.maven.plugins</groupId>
161 <artifactId>maven-compiler-plugin</artifactId>
162 <configuration>
Jan Willem Janssen03a98a92015-11-24 16:15:35 +0000163 <source>1.7</source>
164 <target>1.7</target>
165 </configuration>
166 </plugin>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +0000167 </plugins>
Jan Willem Janssen25376b32013-07-19 11:44:46 +0000168 <pluginManagement>
169 <plugins>
170 <!--This plugin's configuration is used to store Eclipse m2e settings
171 only. It has no influence on the Maven build itself. -->
172 <plugin>
173 <groupId>org.eclipse.m2e</groupId>
174 <artifactId>lifecycle-mapping</artifactId>
175 <version>1.0.0</version>
176 <configuration>
177 <lifecycleMappingMetadata>
178 <pluginExecutions>
179 <pluginExecution>
180 <pluginExecutionFilter>
181 <groupId>
182 org.apache.servicemix.tooling
183 </groupId>
184 <artifactId>
185 depends-maven-plugin
186 </artifactId>
187 <versionRange>
188 [1.2,)
189 </versionRange>
190 <goals>
191 <goal>
192 generate-depends-file
193 </goal>
194 </goals>
195 </pluginExecutionFilter>
196 <action>
197 <ignore></ignore>
198 </action>
199 </pluginExecution>
200 </pluginExecutions>
201 </lifecycleMappingMetadata>
202 </configuration>
203 </plugin>
204 </plugins>
205 </pluginManagement>
Marcel Offermans90f0e9a2012-06-20 13:27:02 +0000206 </build>
207</project>