blob: a421d49ba636398c7c5f1df34dbf145aa0cf4b99 [file] [log] [blame]
Carsten Ziegeler97bbccb2013-01-28 19:01:22 +00001<!--
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 Ziegeler8d77d172013-02-20 15:56:00 +000029 <artifactId>org.apache.felix.inventory</artifactId>
Carsten Ziegeler97bbccb2013-01-28 19:01:22 +000030 <packaging>bundle</packaging>
31 <version>0.0.1-SNAPSHOT</version>
32
Carsten Ziegeler8d77d172013-02-20 15:56:00 +000033 <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 Ziegeler97bbccb2013-01-28 19:01:22 +000035
Felix Meschbergerfcfe3d42013-03-03 14:11:47 +000036 <scm>
37 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/inventory</connection>
38 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/inventory</developerConnection>
39 <url>http://svn.apache.org/viewvc/felix/trunk/inventory</url>
40 </scm>
41
Carsten Ziegeler97bbccb2013-01-28 19:01:22 +000042 <build>
Carsten Ziegeler97bbccb2013-01-28 19:01:22 +000043 <plugins>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <version>2.3.7</version>
48 <extensions>true</extensions>
Felix Meschbergerfcfe3d42013-03-03 14:11:47 +000049 <configuration>
Carsten Ziegeler97bbccb2013-01-28 19:01:22 +000050 <instructions>
51 <Bundle-Category>osgi</Bundle-Category>
Felix Meschbergerfcfe3d42013-03-03 14:11:47 +000052 <Bundle-SymbolicName>
53 ${project.artifactId}
54 </Bundle-SymbolicName>
55 <Bundle-Activator>
56 org.apache.felix.inventory.impl.Activator
57 </Bundle-Activator>
58 <Export-Package>
59 org.apache.felix.inventory;version=1.0.0
60 </Export-Package>
61 <DynamicImport-Package>
62 javax.servlet, javax.servlet.http
63 </DynamicImport-Package>
Carsten Ziegeler97bbccb2013-01-28 19:01:22 +000064 </instructions>
65 </configuration>
66 </plugin>
Carsten Ziegeler97bbccb2013-01-28 19:01:22 +000067 </plugins>
68 </build>
69
Carsten Ziegeler97bbccb2013-01-28 19:01:22 +000070 <dependencies>
71 <dependency>
72 <groupId>org.osgi</groupId>
73 <artifactId>org.osgi.core</artifactId>
74 <version>4.2.0</version>
75 <scope>provided</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.osgi</groupId>
79 <artifactId>org.osgi.compendium</artifactId>
80 <version>4.2.0</version>
81 <scope>provided</scope>
82 </dependency>
83 <dependency>
Carsten Ziegeler97bbccb2013-01-28 19:01:22 +000084 <groupId>javax.servlet</groupId>
85 <artifactId>servlet-api</artifactId>
86 <version>2.4</version>
87 <scope>provided</scope>
88 </dependency>
89 <dependency>
Felix Meschbergerfcfe3d42013-03-03 14:11:47 +000090 <groupId>junit</groupId>
91 <artifactId>junit</artifactId>
92 <version>4.10</version>
93 <scope>test</scope>
Carsten Ziegeler97bbccb2013-01-28 19:01:22 +000094 </dependency>
95 </dependencies>
96</project>