blob: 1520a9f48090005b22362a37d32885ff3f829577 [file] [log] [blame]
Marcel Offermansf4943032009-11-21 18:23:33 +00001<?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 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 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19 <parent>
20 <groupId>org.apache.felix</groupId>
21 <artifactId>felix</artifactId>
22 <version>1.0.4</version>
Marcel Offermans4bcd2cb2009-11-21 19:27:38 +000023 <relativePath>../../pom/pom.xml</relativePath>
Marcel Offermansf4943032009-11-21 18:23:33 +000024 </parent>
25 <modelVersion>4.0.0</modelVersion>
Marcel Offermans4bcd2cb2009-11-21 19:27:38 +000026 <name>Apache Felix Dependency Manager Integration Tests</name>
Marcel Offermansf4943032009-11-21 18:23:33 +000027 <version>3.0.0-SNAPSHOT</version>
Marcel Offermans4bcd2cb2009-11-21 19:27:38 +000028 <artifactId>org.apache.felix.dependencymanager.test</artifactId>
Marcel Offermansf4943032009-11-21 18:23:33 +000029 <dependencies>
30 <dependency>
Marcel Offermansca21ff12009-11-24 16:02:10 +000031 <groupId>org.osgi</groupId>
Marcel Offermansf4943032009-11-21 18:23:33 +000032 <artifactId>org.osgi.core</artifactId>
Marcel Offermans404cd542009-12-08 09:01:23 +000033 <version>4.1.0</version>
Marcel Offermansf4943032009-11-21 18:23:33 +000034 </dependency>
35 <dependency>
Marcel Offermansca21ff12009-11-24 16:02:10 +000036 <groupId>org.osgi</groupId>
Marcel Offermansf4943032009-11-21 18:23:33 +000037 <artifactId>org.osgi.compendium</artifactId>
Marcel Offermans404cd542009-12-08 09:01:23 +000038 <version>4.1.0</version>
Marcel Offermansf4943032009-11-21 18:23:33 +000039 </dependency>
40 <dependency>
Marcel Offermans4bcd2cb2009-11-21 19:27:38 +000041 <groupId>${pom.groupId}</groupId>
42 <artifactId>org.apache.felix.dependencymanager</artifactId>
43 <version>3.0.0-SNAPSHOT</version>
44 <scope>provided</scope>
45 </dependency>
46 <dependency>
Marcel Offermansf4943032009-11-21 18:23:33 +000047 <groupId>org.ops4j.pax.exam</groupId>
48 <artifactId>pax-exam</artifactId>
49 <version>1.2.0</version>
50 </dependency>
51 <dependency>
52 <groupId>org.ops4j.pax.exam</groupId>
53 <artifactId>pax-exam-container-default</artifactId>
54 <version>1.2.0</version>
55 </dependency>
56 <dependency>
57 <groupId>org.ops4j.pax.exam</groupId>
58 <artifactId>pax-exam-junit</artifactId>
59 <version>1.2.0</version>
60 </dependency>
61 <dependency>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
64 <version>4.7</version>
65 <scope>test</scope>
66 </dependency>
67 </dependencies>
68 <build>
69 <plugins>
70 <plugin>
Marcel Offermansf4943032009-11-21 18:23:33 +000071 <artifactId>maven-compiler-plugin</artifactId>
Pierre De Rop5bb420e2009-12-04 21:56:55 +000072 <configuration>
73 <source>1.5</source>
74 <target>1.5</target>
75 <useDefaultManifestFile>false</useDefaultManifestFile>
76 <compilerArgument>-g</compilerArgument>
77 <compilerVersion>1.5</compilerVersion>
78 </configuration>
Marcel Offermansf4943032009-11-21 18:23:33 +000079 <executions>
80 <execution>
81 <id>default-testCompile</id>
82 <configuration>
83 <source>1.5</source>
84 <target>1.5</target>
85 </configuration>
86 </execution>
87 </executions>
88 </plugin>
89 <plugin>
90 <groupId>org.ops4j.pax.exam</groupId>
91 <artifactId>maven-paxexam-plugin</artifactId>
92 <version>1.2.0</version>
93 <executions>
94 <execution>
95 <id>generate-config</id>
96 <goals>
97 <goal>generate-depends-file</goal>
98 </goals>
99 </execution>
100 </executions>
101 </plugin>
102 </plugins>
103 </build>
Marcel Offermansf4943032009-11-21 18:23:33 +0000104</project>