Marcel Offermans | c8d39b3 | 2009-12-22 17:08:07 +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> |
| 20 | |
| 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>dependencymanager-reactor</artifactId> |
| 24 | <version>3.0.0-SNAPSHOT</version> |
| 25 | </parent> |
| 26 | |
| 27 | <name>Apache Felix Dependency Manager Samples</name> |
| 28 | <artifactId>org.apache.felix.dependencymanager.samples</artifactId> |
| 29 | |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>org.osgi</groupId> |
| 33 | <artifactId>org.osgi.core</artifactId> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>org.osgi</groupId> |
| 37 | <artifactId>org.osgi.compendium</artifactId> |
| 38 | </dependency> |
| 39 | |
| 40 | <dependency> |
| 41 | <groupId>${pom.groupId}</groupId> |
| 42 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 43 | <scope>provided</scope> |
| 44 | </dependency> |
| 45 | </dependencies> |
| 46 | |
| 47 | <build> |
| 48 | <plugins> |
| 49 | <plugin> |
| 50 | <artifactId>maven-compiler-plugin</artifactId> |
| 51 | <configuration> |
| 52 | <source>1.5</source> |
| 53 | <target>1.5</target> |
| 54 | <useDefaultManifestFile>false</useDefaultManifestFile> |
| 55 | <compilerArgument>-g</compilerArgument> |
| 56 | <compilerVersion>1.5</compilerVersion> |
| 57 | </configuration> |
| 58 | </plugin> |
| 59 | </plugins> |
| 60 | </build> |
Marcel Offermans | c8d39b3 | 2009-12-22 17:08:07 +0000 | [diff] [blame] | 61 | </project> |