blob: be67f46a232d40a2a82b2080421a1d158777e36a [file] [log] [blame]
Marcel Offermans613a6202009-03-11 22:31:44 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
20<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">
Marcel Offermans613a6202009-03-11 22:31:44 +000021
Stuart McCulloch798b4562009-04-16 09:32:05 +000022 <modelVersion>4.0.0</modelVersion>
Marcel Offermans613a6202009-03-11 22:31:44 +000023
Stuart McCulloch798b4562009-04-16 09:32:05 +000024 <parent>
25 <groupId>org.apache.felix</groupId>
Marcel Offermansb8f9bcb2011-04-11 20:46:19 +000026 <artifactId>felix-parent</artifactId>
Carsten Ziegeler51d21ad2011-05-10 12:23:15 +000027 <version>2</version>
Stuart McCulloch798b4562009-04-16 09:32:05 +000028 <relativePath>../pom/pom.xml</relativePath>
29 </parent>
30
31 <artifactId>org.apache.felix.devicemanager</artifactId>
32 <version>0.9.0-SNAPSHOT</version>
33 <packaging>bundle</packaging>
34
35 <name>Apache Felix Device Manager</name>
36
37 <description>
38 Implementation of the OSGi Device Access Specification 1.1
39 </description>
40
Marcel Offermansb8f9bcb2011-04-11 20:46:19 +000041 <dependencies>
42 <dependency>
43 <groupId>org.osgi</groupId>
44 <artifactId>org.osgi.core</artifactId>
45 <version>4.2.0</version>
46 <scope>provided</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.osgi</groupId>
50 <artifactId>org.osgi.compendium</artifactId>
51 <version>4.2.0</version>
52 <scope>provided</scope>
53 </dependency>
54 <dependency>
55 <groupId>${pom.groupId}</groupId>
56 <artifactId>org.apache.felix.framework</artifactId>
57 <version>1.6.0</version>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>${pom.groupId}</groupId>
62 <artifactId>org.apache.felix.dependencymanager</artifactId>
Marcel Offermansdb800e22012-09-27 21:37:10 +000063 <version>3.0.0</version>
Marcel Offermansb8f9bcb2011-04-11 20:46:19 +000064 <scope>provided</scope>
65 </dependency>
66 </dependencies>
Marcel Offermans613a6202009-03-11 22:31:44 +000067 <build>
68 <plugins>
69 <plugin>
Marcel Offermans613a6202009-03-11 22:31:44 +000070 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-bundle-plugin</artifactId>
72 <version>1.4.0</version>
73 <extensions>true</extensions>
74 <configuration>
75 <instructions>
76 <Bundle-SymbolicName>org.apache.felix.das</Bundle-SymbolicName>
77 <Bundle-Name>Apache Felix Device Manager</Bundle-Name>
78 <Bundle-Description>A bundle that provides a run-time device manager.</Bundle-Description>
79 <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
80 <Bundle-Activator>org.apache.felix.das.Activator</Bundle-Activator>
81 <Private-Package>org.apache.felix.das, org.apache.felix.das.util</Private-Package>
82 </instructions>
83 </configuration>
84 </plugin>
85 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-compiler-plugin</artifactId>
88 <configuration>
89 <source>1.5</source>
90 <target>1.5</target>
91 </configuration>
92 </plugin>
93 </plugins>
94 </build>
95</project>