Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "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 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
| 19 | <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"> |
| 20 | |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>felix-parent</artifactId> |
| 25 | <version>2.1</version> |
| 26 | <relativePath>../pom/pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
Carsten Ziegeler | 7b97486 | 2013-02-20 15:56:00 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.inventory</artifactId> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 30 | <packaging>bundle</packaging> |
| 31 | <version>0.0.1-SNAPSHOT</version> |
| 32 | |
Carsten Ziegeler | 7b97486 | 2013-02-20 15:56:00 +0000 | [diff] [blame] | 33 | <name>Apache Felix Inventory</name> |
| 34 | <description>Apache Felix Inventory provides some mechanisms to get the current state of the system and therefore provides an inventory of the system.</description> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 35 | |
| 36 | <build> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 37 | <plugins> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>maven-bundle-plugin</artifactId> |
| 41 | <version>2.3.7</version> |
| 42 | <extensions>true</extensions> |
| 43 | <configuration> |
| 44 | <instructions> |
Carsten Ziegeler | 3f44fc0 | 2013-02-26 11:06:45 +0000 | [diff] [blame] | 45 | <Package-Export>org.apache.felix.inventory;version=1.0.0</Package-Export> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 46 | <Bundle-Category>osgi</Bundle-Category> |
| 47 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 48 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 49 | <DynamicImport-Package>javax.servlet, javax.servlet.http</DynamicImport-Package> |
Carsten Ziegeler | 7b97486 | 2013-02-20 15:56:00 +0000 | [diff] [blame] | 50 | <Bundle-Activator>org.apache.felix.inventory.impl.Activator</Bundle-Activator> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 51 | </instructions> |
| 52 | </configuration> |
| 53 | </plugin> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 54 | </plugins> |
| 55 | </build> |
| 56 | |
Carsten Ziegeler | 67a49cd | 2013-01-28 19:04:40 +0000 | [diff] [blame] | 57 | <scm> |
Carsten Ziegeler | 7b97486 | 2013-02-20 15:56:00 +0000 | [diff] [blame] | 58 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/inventory</connection> |
| 59 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/inventory</developerConnection> |
| 60 | <url>http://svn.apache.org/viewvc/felix/trunk/inventory</url> |
Carsten Ziegeler | 67a49cd | 2013-01-28 19:04:40 +0000 | [diff] [blame] | 61 | </scm> |
| 62 | |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 63 | <dependencies> |
| 64 | <dependency> |
| 65 | <groupId>org.osgi</groupId> |
| 66 | <artifactId>org.osgi.core</artifactId> |
| 67 | <version>4.2.0</version> |
| 68 | <scope>provided</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.osgi</groupId> |
| 72 | <artifactId>org.osgi.compendium</artifactId> |
| 73 | <version>4.2.0</version> |
| 74 | <scope>provided</scope> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.slf4j</groupId> |
| 78 | <artifactId>slf4j-api</artifactId> |
| 79 | <version>1.5.0</version> |
| 80 | <scope>provided</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>javax.servlet</groupId> |
| 84 | <artifactId>servlet-api</artifactId> |
| 85 | <version>2.4</version> |
| 86 | <scope>provided</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>biz.aQute</groupId> |
| 90 | <artifactId>bndlib</artifactId> |
| 91 | <version>1.43.0</version> |
| 92 | <scope>provided</scope> |
| 93 | </dependency> |
| 94 | </dependencies> |
| 95 | </project> |