Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <parent> |
| 7 | <groupId>org.apache.felix</groupId> |
| 8 | <artifactId>servicediagnostics</artifactId> |
| 9 | <version>1.0.0-SNAPSHOT</version> |
| 10 | <relativePath>../pom.xml</relativePath> |
| 11 | </parent> |
| 12 | |
| 13 | <groupId>org.apache.felix</groupId> |
| 14 | <artifactId>servicediagnostics.core</artifactId> |
| 15 | <version>1.0.0-SNAPSHOT</version> |
| 16 | <packaging>bundle</packaging> |
| 17 | |
| 18 | <dependencies> |
| 19 | <dependency> |
| 20 | <groupId>org.apache.felix</groupId> |
| 21 | <artifactId>org.apache.felix.webconsole</artifactId> |
| 22 | <version>3.1.8</version> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>org.apache.felix</groupId> |
| 26 | <artifactId>javax.servlet</artifactId> |
| 27 | <version>1.0.0</version> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.json</groupId> |
| 31 | <artifactId>json</artifactId> |
| 32 | <version>20090211</version> |
| 33 | </dependency> |
| 34 | </dependencies> |
| 35 | |
| 36 | <build> |
| 37 | <plugins> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>maven-bundle-plugin</artifactId> |
| 41 | <configuration> |
| 42 | <instructions> |
| 43 | <Bundle-Category>osgi</Bundle-Category> |
| 44 | <Bundle-SymbolicName> |
| 45 | ${project.artifactId} |
| 46 | </Bundle-SymbolicName> |
| 47 | <Bundle-Activator> |
| 48 | org.apache.felix.servicediagnostics.impl.Activator |
| 49 | </Bundle-Activator> |
| 50 | <Export-Package> |
| 51 | org.apache.felix.servicediagnostics;version=1.0 |
| 52 | </Export-Package> |
| 53 | <Private-Package> |
| 54 | org.apache.felix.servicediagnostics.impl, |
| 55 | org.apache.felix.servicediagnostics.webconsole |
| 56 | </Private-Package> |
| 57 | <Include-Resource> |
| 58 | src/main/resources |
| 59 | </Include-Resource> |
| 60 | </instructions> |
| 61 | </configuration> |
| 62 | </plugin> |
| 63 | </plugins> |
| 64 | </build> |
| 65 | |
| 66 | </project> |