blob: f4ad9a652f73fc80140faec764c74b033754db3a [file] [log] [blame]
Marcel Offermans406c14e2009-12-22 17:08:07 +00001<?xml version="1.0" encoding="UTF-8"?>
Marcel Offermans44930482011-04-27 11:07:19 +00002<!--
Marcel Offermans406c14e2009-12-22 17:08:07 +00003 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 Offermans44930482011-04-27 11:07:19 +000017<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 Rop99d703c2011-05-07 10:23:59 +000030 <version>3.0.0</version>
Marcel Offermans44930482011-04-27 11:07:19 +000031 <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 Rop99d703c2011-05-07 10:23:59 +000045 <version>3.0.0</version>
Marcel Offermans44930482011-04-27 11:07:19 +000046 <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 Offermans406c14e2009-12-22 17:08:07 +000063</project>