blob: 7b91f6c62e5f8725e345cb723d313dd931ea9a29 [file] [log] [blame]
Marcel Offermansc8d39b32009-12-22 17:08:07 +00001<?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>
23 <relativePath>../../pom/pom.xml</relativePath>
24 </parent>
25 <modelVersion>4.0.0</modelVersion>
26 <name>Apache Felix Dependency Manager Samples</name>
27 <version>3.0.0-SNAPSHOT</version>
28 <artifactId>org.apache.felix.dependencymanager.samples</artifactId>
29 <dependencies>
30 <dependency>
31 <groupId>org.osgi</groupId>
32 <artifactId>org.osgi.core</artifactId>
33 <version>4.1.0</version>
34 </dependency>
35 <dependency>
36 <groupId>org.osgi</groupId>
37 <artifactId>org.osgi.compendium</artifactId>
38 <version>4.1.0</version>
39 </dependency>
40 <dependency>
41 <groupId>${pom.groupId}</groupId>
42 <artifactId>org.apache.felix.dependencymanager</artifactId>
43 <version>3.0.0-SNAPSHOT</version>
44 <scope>provided</scope>
45 </dependency>
46 </dependencies>
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>
61</project>