blob: 7187b5a44b93d2370bbabfca02fa7dbb0b1526fc [file] [log] [blame]
Marcel Offermansf4943032009-11-21 18:23:33 +00001<?xml version="1.0" encoding="UTF-8"?>
Marcel Offermans89c60cc2011-04-27 10:14:59 +00002<!--
Marcel Offermansf4943032009-11-21 18:23:33 +00003 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to you under the Apache License, Version
7 2.0 (the "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 Unless required by
11 applicable law or agreed to in writing, software distributed under
12 the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
13 OR CONDITIONS OF ANY KIND, either express or implied. See the
14 License for the specific language governing permissions and
15 limitations under the License.
16 -->
Marcel Offermans89c60cc2011-04-27 10:14:59 +000017<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">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <groupId>org.apache.felix</groupId>
21 <artifactId>felix-parent</artifactId>
22 <version>1.2.0</version>
23 <relativePath>../../pom/pom.xml</relativePath>
24 </parent>
25 <properties>
26 <osgi.version>4.2.0</osgi.version>
27 <pax.exam.version>1.2.0</pax.exam.version>
28 </properties>
29 <name>Apache Felix Dependency Manager Integration Tests</name>
30 <artifactId>org.apache.felix.dependencymanager.test</artifactId>
Pierre De Rop05012142011-05-06 07:36:14 +000031 <version>3.0.1-SNAPSHOT</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000032 <dependencies>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.apache.felix.dependencymanager</artifactId>
Marcel Offermanscdd0f292011-05-10 09:58:52 +000036 <version>3.1.0-SNAPSHOT</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000037 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>${pom.groupId}</groupId>
41 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
Pierre De Rop17ff6372011-05-21 22:14:54 +000042 <version>3.1.0-SNAPSHOT</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000043 <scope>provided</scope>
44 </dependency>
45 <dependency>
46 <groupId>${pom.groupId}</groupId>
47 <artifactId>org.apache.felix.dependencymanager.runtime</artifactId>
Pierre De Rop17ff6372011-05-21 22:14:54 +000048 <version>3.1.0-SNAPSHOT</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000049 <scope>provided</scope>
50 </dependency>
51 <dependency>
Marcel Offermansd065f1b2011-05-18 14:46:17 +000052 <groupId>${pom.groupId}</groupId>
53 <artifactId>org.apache.felix.dependencymanager.shell</artifactId>
54 <version>3.0.1-SNAPSHOT</version>
55 <scope>provided</scope>
56 </dependency>
57 <dependency>
58 <groupId>${pom.groupId}</groupId>
59 <artifactId>org.apache.felix.shell</artifactId>
60 <version>1.4.2</version>
61 <scope>provided</scope>
62 </dependency>
63 <dependency>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000064 <groupId>org.osgi</groupId>
65 <artifactId>org.osgi.core</artifactId>
66 <version>${osgi.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>org.osgi</groupId>
70 <artifactId>org.osgi.compendium</artifactId>
71 <version>${osgi.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>biz.aQute</groupId>
75 <artifactId>bndlib</artifactId>
Pierre De Rop89a57542013-01-23 11:14:46 +000076 <version>1.50.0</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000077 </dependency>
78 <dependency>
79 <groupId>org.ops4j.pax.exam</groupId>
80 <artifactId>pax-exam</artifactId>
81 <version>${pax.exam.version}</version>
82 </dependency>
83 <dependency>
84 <groupId>org.ops4j.pax.exam</groupId>
85 <artifactId>pax-exam-container-default</artifactId>
86 <version>${pax.exam.version}</version>
87 </dependency>
88 <dependency>
89 <groupId>org.ops4j.pax.exam</groupId>
90 <artifactId>pax-exam-junit</artifactId>
91 <version>${pax.exam.version}</version>
92 </dependency>
93 <dependency>
94 <groupId>junit</groupId>
95 <artifactId>junit</artifactId>
96 <version>4.7</version>
97 </dependency>
98 </dependencies>
99 <build>
100 <plugins>
101 <plugin>
102 <artifactId>maven-compiler-plugin</artifactId>
103 <configuration>
104 <source>1.5</source>
105 <target>1.5</target>
106 <useDefaultManifestFile>false</useDefaultManifestFile>
107 <compilerArgument>-g</compilerArgument>
108 <compilerVersion>1.5</compilerVersion>
109 </configuration>
110 <executions>
111 <execution>
112 <id>default-testCompile</id>
113 <configuration>
114 <source>1.5</source>
115 <target>1.5</target>
116 </configuration>
117 </execution>
118 </executions>
119 </plugin>
120 <plugin>
121 <groupId>org.ops4j.pax.exam</groupId>
122 <artifactId>maven-paxexam-plugin</artifactId>
123 <executions>
124 <execution>
125 <id>generate-config</id>
126 <goals>
127 <goal>generate-depends-file</goal>
128 </goals>
129 </execution>
130 </executions>
131 </plugin>
132 </plugins>
133 </build>
Marcel Offermansf4943032009-11-21 18:23:33 +0000134</project>