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> |
Felix Meschberger | 461f0f8 | 2013-05-21 16:28:57 +0000 | [diff] [blame] | 31 | <version>1.0.1-SNAPSHOT</version> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 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 | |
Felix Meschberger | cc4f5a7 | 2013-03-03 14:11:47 +0000 | [diff] [blame] | 36 | <scm> |
Felix Meschberger | 461f0f8 | 2013-05-21 16:28:57 +0000 | [diff] [blame] | 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> |
Felix Meschberger | cc4f5a7 | 2013-03-03 14:11:47 +0000 | [diff] [blame] | 40 | </scm> |
| 41 | |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 42 | <build> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 43 | <plugins> |
Felix Meschberger | f6eae46 | 2013-04-17 13:52:43 +0000 | [diff] [blame] | 44 | <!-- 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 Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 82 | <plugin> |
| 83 | <groupId>org.apache.felix</groupId> |
| 84 | <artifactId>maven-bundle-plugin</artifactId> |
| 85 | <version>2.3.7</version> |
| 86 | <extensions>true</extensions> |
Felix Meschberger | cc4f5a7 | 2013-03-03 14:11:47 +0000 | [diff] [blame] | 87 | <configuration> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 88 | <instructions> |
| 89 | <Bundle-Category>osgi</Bundle-Category> |
Felix Meschberger | cc4f5a7 | 2013-03-03 14:11:47 +0000 | [diff] [blame] | 90 | <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 Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 102 | </instructions> |
| 103 | </configuration> |
| 104 | </plugin> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 105 | </plugins> |
| 106 | </build> |
| 107 | |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 108 | <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 Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 122 | <groupId>javax.servlet</groupId> |
| 123 | <artifactId>servlet-api</artifactId> |
| 124 | <version>2.4</version> |
| 125 | <scope>provided</scope> |
| 126 | </dependency> |
| 127 | <dependency> |
Felix Meschberger | cc4f5a7 | 2013-03-03 14:11:47 +0000 | [diff] [blame] | 128 | <groupId>junit</groupId> |
| 129 | <artifactId>junit</artifactId> |
| 130 | <version>4.10</version> |
| 131 | <scope>test</scope> |
Carsten Ziegeler | 395a782 | 2013-01-28 19:01:22 +0000 | [diff] [blame] | 132 | </dependency> |
| 133 | </dependencies> |
| 134 | </project> |