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" |
Marcel Offermans | e7951e3 | 2010-08-18 13:41:45 +0000 | [diff] [blame] | 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
Pierre De Rop | 61e91a4 | 2010-02-18 21:02:56 +0000 | [diff] [blame] | 20 | |
Marcel Offermans | e7951e3 | 2010-08-18 13:41:45 +0000 | [diff] [blame] | 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>dependencymanager-reactor</artifactId> |
| 24 | <version>3.0.0-SNAPSHOT</version> |
| 25 | </parent> |
Pierre De Rop | 61e91a4 | 2010-02-18 21:02:56 +0000 | [diff] [blame] | 26 | |
Marcel Offermans | e7951e3 | 2010-08-18 13:41:45 +0000 | [diff] [blame] | 27 | <name>Apache Felix Dependency Manager Integration Tests</name> |
| 28 | <artifactId>org.apache.felix.dependencymanager.test</artifactId> |
| 29 | |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>${pom.groupId}</groupId> |
| 33 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 34 | <scope>provided</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>${pom.groupId}</groupId> |
| 38 | <artifactId>org.apache.felix.dependencymanager.annotation</artifactId> |
| 39 | <scope>provided</scope> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>${pom.groupId}</groupId> |
| 43 | <artifactId>org.apache.felix.dependencymanager.runtime</artifactId> |
| 44 | <scope>provided</scope> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>org.osgi</groupId> |
| 49 | <artifactId>org.osgi.core</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.osgi</groupId> |
| 53 | <artifactId>org.osgi.compendium</artifactId> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>biz.aQute</groupId> |
| 58 | <artifactId>bnd</artifactId> |
| 59 | </dependency> |
| 60 | |
| 61 | <dependency> |
| 62 | <groupId>org.ops4j.pax.exam</groupId> |
| 63 | <artifactId>pax-exam</artifactId> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.ops4j.pax.exam</groupId> |
| 67 | <artifactId>pax-exam-container-default</artifactId> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.ops4j.pax.exam</groupId> |
| 71 | <artifactId>pax-exam-junit</artifactId> |
| 72 | </dependency> |
| 73 | |
| 74 | <dependency> |
| 75 | <groupId>junit</groupId> |
| 76 | <artifactId>junit</artifactId> |
| 77 | </dependency> |
| 78 | </dependencies> |
| 79 | |
| 80 | <build> |
| 81 | <plugins> |
| 82 | <plugin> |
| 83 | <artifactId>maven-compiler-plugin</artifactId> |
| 84 | <configuration> |
| 85 | <source>1.5</source> |
| 86 | <target>1.5</target> |
| 87 | <useDefaultManifestFile>false</useDefaultManifestFile> |
| 88 | <compilerArgument>-g</compilerArgument> |
| 89 | <compilerVersion>1.5</compilerVersion> |
| 90 | </configuration> |
| 91 | <executions> |
| 92 | <execution> |
| 93 | <id>default-testCompile</id> |
| 94 | <configuration> |
| 95 | <source>1.5</source> |
| 96 | <target>1.5</target> |
| 97 | </configuration> |
| 98 | </execution> |
| 99 | </executions> |
| 100 | </plugin> |
| 101 | |
| 102 | <plugin> |
| 103 | <groupId>org.ops4j.pax.exam</groupId> |
| 104 | <artifactId>maven-paxexam-plugin</artifactId> |
| 105 | <executions> |
| 106 | <execution> |
| 107 | <id>generate-config</id> |
| 108 | <goals> |
| 109 | <goal>generate-depends-file</goal> |
| 110 | </goals> |
| 111 | </execution> |
| 112 | </executions> |
| 113 | </plugin> |
| 114 | </plugins> |
| 115 | </build> |
Marcel Offermans | f494303 | 2009-11-21 18:23:33 +0000 | [diff] [blame] | 116 | </project> |