Marcel Offermans | c8d39b3 | 2009-12-22 17:08:07 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Marcel Offermans | a0c6c7b | 2011-04-27 11:07:19 +0000 | [diff] [blame] | 2 | <!-- |
Marcel Offermans | c8d39b3 | 2009-12-22 17:08:07 +0000 | [diff] [blame] | 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 | --> |
Marcel Offermans | a0c6c7b | 2011-04-27 11:07:19 +0000 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | <parent> |
| 20 | <groupId>org.apache.felix</groupId> |
| 21 | <artifactId>felix-parent</artifactId> |
| 22 | <version>1.2.0</version> |
| 23 | <relativePath>../../pom/pom.xml</relativePath> |
| 24 | </parent> |
| 25 | <properties> |
| 26 | <osgi.version>4.2.0</osgi.version> |
| 27 | </properties> |
| 28 | <name>Apache Felix Dependency Manager Samples</name> |
| 29 | <artifactId>org.apache.felix.dependencymanager.samples</artifactId> |
Pierre De Rop | 7302fa6 | 2014-11-14 11:55:35 +0000 | [diff] [blame] | 30 | <version>3.2.1-SNAPSHOT</version> |
Marcel Offermans | a0c6c7b | 2011-04-27 11:07:19 +0000 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>org.osgi</groupId> |
| 34 | <artifactId>org.osgi.core</artifactId> |
| 35 | <version>${osgi.version}</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.osgi</groupId> |
| 39 | <artifactId>org.osgi.compendium</artifactId> |
| 40 | <version>${osgi.version}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>${pom.groupId}</groupId> |
| 44 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
Pierre De Rop | 7302fa6 | 2014-11-14 11:55:35 +0000 | [diff] [blame] | 45 | <version>3.2.0</version> |
Marcel Offermans | a0c6c7b | 2011-04-27 11:07:19 +0000 | [diff] [blame] | 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | </dependencies> |
| 49 | <build> |
| 50 | <plugins> |
| 51 | <plugin> |
| 52 | <artifactId>maven-compiler-plugin</artifactId> |
| 53 | <configuration> |
| 54 | <source>1.5</source> |
| 55 | <target>1.5</target> |
| 56 | <useDefaultManifestFile>false</useDefaultManifestFile> |
| 57 | <compilerArgument>-g</compilerArgument> |
| 58 | <compilerVersion>1.5</compilerVersion> |
| 59 | </configuration> |
| 60 | </plugin> |
| 61 | </plugins> |
| 62 | </build> |
Marcel Offermans | c8d39b3 | 2009-12-22 17:08:07 +0000 | [diff] [blame] | 63 | </project> |