Marcel Offermans | 613a620 | 2009-03-11 22:31:44 +0000 | [diff] [blame] | 1 | <?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 Offermans | 613a620 | 2009-03-11 22:31:44 +0000 | [diff] [blame] | 21 |
|
Stuart McCulloch | 798b456 | 2009-04-16 09:32:05 +0000 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion>
|
Marcel Offermans | 613a620 | 2009-03-11 22:31:44 +0000 | [diff] [blame] | 23 |
|
Stuart McCulloch | 798b456 | 2009-04-16 09:32:05 +0000 | [diff] [blame] | 24 | <parent>
|
| 25 | <groupId>org.apache.felix</groupId>
|
Marcel Offermans | b8f9bcb | 2011-04-11 20:46:19 +0000 | [diff] [blame] | 26 | <artifactId>felix-parent</artifactId>
|
Carsten Ziegeler | 51d21ad | 2011-05-10 12:23:15 +0000 | [diff] [blame] | 27 | <version>2</version>
|
Stuart McCulloch | 798b456 | 2009-04-16 09:32:05 +0000 | [diff] [blame] | 28 | <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 Offermans | b8f9bcb | 2011-04-11 20:46:19 +0000 | [diff] [blame] | 41 | <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 Offermans | db800e2 | 2012-09-27 21:37:10 +0000 | [diff] [blame] | 63 | <version>3.0.0</version>
|
Marcel Offermans | b8f9bcb | 2011-04-11 20:46:19 +0000 | [diff] [blame] | 64 | <scope>provided</scope>
|
| 65 | </dependency>
|
| 66 | </dependencies>
|
Marcel Offermans | 613a620 | 2009-03-11 22:31:44 +0000 | [diff] [blame] | 67 | <build>
|
| 68 | <plugins>
|
| 69 | <plugin>
|
Marcel Offermans | 613a620 | 2009-03-11 22:31:44 +0000 | [diff] [blame] | 70 | <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>
|