Marcel Offermans | f494303 | 2009-11-21 18:23:33 +0000 | [diff] [blame] | 1 | <?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 Offermans | 4bcd2cb | 2009-11-21 19:27:38 +0000 | [diff] [blame^] | 23 | <relativePath>../../pom/pom.xml</relativePath> |
Marcel Offermans | f494303 | 2009-11-21 18:23:33 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
Marcel Offermans | 4bcd2cb | 2009-11-21 19:27:38 +0000 | [diff] [blame^] | 26 | <name>Apache Felix Dependency Manager Integration Tests</name> |
Marcel Offermans | f494303 | 2009-11-21 18:23:33 +0000 | [diff] [blame] | 27 | <version>3.0.0-SNAPSHOT</version> |
Marcel Offermans | 4bcd2cb | 2009-11-21 19:27:38 +0000 | [diff] [blame^] | 28 | <artifactId>org.apache.felix.dependencymanager.test</artifactId> |
Marcel Offermans | f494303 | 2009-11-21 18:23:33 +0000 | [diff] [blame] | 29 | <dependencies> |
| 30 | <dependency> |
| 31 | <groupId>${pom.groupId}</groupId> |
| 32 | <artifactId>org.osgi.core</artifactId> |
| 33 | <version>1.2.0</version> |
| 34 | <scope>provided</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>${pom.groupId}</groupId> |
| 38 | <artifactId>org.osgi.compendium</artifactId> |
| 39 | <version>1.2.0</version> |
| 40 | <scope>provided</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
Marcel Offermans | 4bcd2cb | 2009-11-21 19:27:38 +0000 | [diff] [blame^] | 43 | <groupId>${pom.groupId}</groupId> |
| 44 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 45 | <version>3.0.0-SNAPSHOT</version> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
Marcel Offermans | f494303 | 2009-11-21 18:23:33 +0000 | [diff] [blame] | 49 | <groupId>org.ops4j.pax.exam</groupId> |
| 50 | <artifactId>pax-exam</artifactId> |
| 51 | <version>1.2.0</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.ops4j.pax.exam</groupId> |
| 55 | <artifactId>pax-exam-container-default</artifactId> |
| 56 | <version>1.2.0</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.ops4j.pax.exam</groupId> |
| 60 | <artifactId>pax-exam-junit</artifactId> |
| 61 | <version>1.2.0</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>junit</groupId> |
| 65 | <artifactId>junit</artifactId> |
| 66 | <version>4.7</version> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | </dependencies> |
| 70 | <build> |
| 71 | <plugins> |
| 72 | <plugin> |
Marcel Offermans | f494303 | 2009-11-21 18:23:33 +0000 | [diff] [blame] | 73 | <artifactId>maven-compiler-plugin</artifactId> |
| 74 | <executions> |
| 75 | <execution> |
| 76 | <id>default-testCompile</id> |
| 77 | <configuration> |
| 78 | <source>1.5</source> |
| 79 | <target>1.5</target> |
| 80 | </configuration> |
| 81 | </execution> |
| 82 | </executions> |
| 83 | </plugin> |
| 84 | <plugin> |
| 85 | <groupId>org.ops4j.pax.exam</groupId> |
| 86 | <artifactId>maven-paxexam-plugin</artifactId> |
| 87 | <version>1.2.0</version> |
| 88 | <executions> |
| 89 | <execution> |
| 90 | <id>generate-config</id> |
| 91 | <goals> |
| 92 | <goal>generate-depends-file</goal> |
| 93 | </goals> |
| 94 | </execution> |
| 95 | </executions> |
| 96 | </plugin> |
| 97 | </plugins> |
| 98 | </build> |
Marcel Offermans | f494303 | 2009-11-21 18:23:33 +0000 | [diff] [blame] | 99 | </project> |