blob: c8fc7016d52bd9d6f56b2fcd208ddb3c9a887eb3 [file] [log] [blame]
Carsten Ziegeler395a7822013-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 Ziegeler7b974862013-02-20 15:56:00 +000029 <artifactId>org.apache.felix.inventory</artifactId>
Carsten Ziegeler395a7822013-01-28 19:01:22 +000030 <packaging>bundle</packaging>
Carsten Ziegelerbdc11ae2014-02-27 07:05:15 +000031 <version>1.0.5-SNAPSHOT</version>
Carsten Ziegeler395a7822013-01-28 19:01:22 +000032
Carsten Ziegeler7b974862013-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 Ziegeler395a7822013-01-28 19:01:22 +000035
Felix Meschbergercc4f5a72013-03-03 14:11:47 +000036 <scm>
Carsten Ziegelerbdc11ae2014-02-27 07:05:15 +000037 <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>
Felix Meschbergercc4f5a72013-03-03 14:11:47 +000040 </scm>
41
Carsten Ziegeler395a7822013-01-28 19:01:22 +000042 <build>
Carsten Ziegeler395a7822013-01-28 19:01:22 +000043 <plugins>
Felix Meschbergerf6eae462013-04-17 13:52:43 +000044 <!-- Make sure to not use non Java 1.4 API -->
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-compiler-plugin</artifactId>
48 <configuration>
49 <source>1.4</source>
50 <target>1.4</target>
51 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.codehaus.mojo</groupId>
55 <artifactId>animal-sniffer-maven-plugin</artifactId>
56 <version>1.7</version>
57 <configuration>
58 <signature>
59 <groupId>org.codehaus.mojo.signature</groupId>
60 <artifactId>java14</artifactId>
61 <version>1.0</version>
62 </signature>
63 </configuration>
64 <executions>
65 <execution>
66 <phase>test</phase>
67 <goals>
68 <goal>check</goal>
69 </goals>
70 </execution>
71 </executions>
72 </plugin>
73
74 <plugin>
75 <artifactId>maven-javadoc-plugin</artifactId>
76 <configuration>
77 <excludePackageNames>
78 *.impl
79 </excludePackageNames>
80 </configuration>
81 </plugin>
Carsten Ziegeler395a7822013-01-28 19:01:22 +000082 <plugin>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>maven-bundle-plugin</artifactId>
85 <version>2.3.7</version>
86 <extensions>true</extensions>
Felix Meschbergercc4f5a72013-03-03 14:11:47 +000087 <configuration>
Carsten Ziegeler395a7822013-01-28 19:01:22 +000088 <instructions>
89 <Bundle-Category>osgi</Bundle-Category>
Felix Meschbergercc4f5a72013-03-03 14:11:47 +000090 <Bundle-SymbolicName>
91 ${project.artifactId}
92 </Bundle-SymbolicName>
93 <Bundle-Activator>
94 org.apache.felix.inventory.impl.Activator
95 </Bundle-Activator>
96 <Export-Package>
97 org.apache.felix.inventory;version=1.0.0
98 </Export-Package>
99 <DynamicImport-Package>
100 javax.servlet, javax.servlet.http
101 </DynamicImport-Package>
Carsten Ziegeler395a7822013-01-28 19:01:22 +0000102 </instructions>
103 </configuration>
104 </plugin>
Carsten Ziegeler395a7822013-01-28 19:01:22 +0000105 </plugins>
106 </build>
107
Carsten Ziegeler395a7822013-01-28 19:01:22 +0000108 <dependencies>
109 <dependency>
110 <groupId>org.osgi</groupId>
111 <artifactId>org.osgi.core</artifactId>
112 <version>4.2.0</version>
113 <scope>provided</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.osgi</groupId>
117 <artifactId>org.osgi.compendium</artifactId>
118 <version>4.2.0</version>
119 <scope>provided</scope>
120 </dependency>
121 <dependency>
Carsten Ziegeler395a7822013-01-28 19:01:22 +0000122 <groupId>javax.servlet</groupId>
123 <artifactId>servlet-api</artifactId>
124 <version>2.4</version>
125 <scope>provided</scope>
126 </dependency>
127 <dependency>
Felix Meschbergercc4f5a72013-03-03 14:11:47 +0000128 <groupId>junit</groupId>
129 <artifactId>junit</artifactId>
130 <version>4.10</version>
131 <scope>test</scope>
Carsten Ziegeler395a7822013-01-28 19:01:22 +0000132 </dependency>
133 </dependencies>
134</project>