blob: de8b2d20d2158b99314f5b2f4848658549e2581f [file] [log] [blame]
Marcel Offermanse3decca2009-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 Offermans2e0c5a22009-11-21 19:27:38 +000023 <relativePath>../../pom/pom.xml</relativePath>
Marcel Offermanse3decca2009-11-21 18:23:33 +000024 </parent>
25 <modelVersion>4.0.0</modelVersion>
Marcel Offermans2e0c5a22009-11-21 19:27:38 +000026 <name>Apache Felix Dependency Manager Integration Tests</name>
Marcel Offermanse3decca2009-11-21 18:23:33 +000027 <version>3.0.0-SNAPSHOT</version>
Marcel Offermans2e0c5a22009-11-21 19:27:38 +000028 <artifactId>org.apache.felix.dependencymanager.test</artifactId>
Marcel Offermanse3decca2009-11-21 18:23:33 +000029 <dependencies>
30 <dependency>
Marcel Offermansc7a43ae2009-11-24 16:02:10 +000031 <groupId>org.osgi</groupId>
Marcel Offermanse3decca2009-11-21 18:23:33 +000032 <artifactId>org.osgi.core</artifactId>
Marcel Offermansc7a43ae2009-11-24 16:02:10 +000033 <version>4.2.0</version>
Marcel Offermanse3decca2009-11-21 18:23:33 +000034 </dependency>
35 <dependency>
Marcel Offermansc7a43ae2009-11-24 16:02:10 +000036 <groupId>org.osgi</groupId>
Marcel Offermanse3decca2009-11-21 18:23:33 +000037 <artifactId>org.osgi.compendium</artifactId>
Marcel Offermansc7a43ae2009-11-24 16:02:10 +000038 <version>4.2.0</version>
Marcel Offermanse3decca2009-11-21 18:23:33 +000039 </dependency>
40 <dependency>
Marcel Offermans2e0c5a22009-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 Offermanse3decca2009-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 Offermanse3decca2009-11-21 18:23:33 +000071 <artifactId>maven-compiler-plugin</artifactId>
72 <executions>
73 <execution>
74 <id>default-testCompile</id>
75 <configuration>
76 <source>1.5</source>
77 <target>1.5</target>
78 </configuration>
79 </execution>
80 </executions>
81 </plugin>
82 <plugin>
83 <groupId>org.ops4j.pax.exam</groupId>
84 <artifactId>maven-paxexam-plugin</artifactId>
85 <version>1.2.0</version>
86 <executions>
87 <execution>
88 <id>generate-config</id>
89 <goals>
90 <goal>generate-depends-file</goal>
91 </goals>
92 </execution>
93 </executions>
94 </plugin>
95 </plugins>
96 </build>
Marcel Offermanse3decca2009-11-21 18:23:33 +000097</project>