Carsten Ziegeler | f76e64b | 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.sample</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>servicediagnostics.core</artifactId> |
| 22 | <version>1.0.0-SNAPSHOT</version> |
| 23 | </dependency> |
| 24 | <!-- runtime dependencies. added to populate the local repository --> |
| 25 | <dependency> |
| 26 | <groupId>org.apache.felix</groupId> |
| 27 | <artifactId>org.apache.felix.main</artifactId> |
| 28 | <version>3.2.2</version> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.apache.felix</groupId> |
| 32 | <artifactId>org.apache.felix.http.jetty</artifactId> |
| 33 | <version>2.2.0</version> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>org.apache.felix.shell</artifactId> |
| 38 | <version>1.4.2</version> |
| 39 | </dependency> |
| 40 | </dependencies> |
| 41 | |
| 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <groupId>org.scala-tools</groupId> |
| 46 | <artifactId>maven-scala-plugin</artifactId> |
| 47 | </plugin> |
| 48 | |
| 49 | <plugin> |
| 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>maven-bundle-plugin</artifactId> |
| 52 | <configuration> |
| 53 | <instructions> |
| 54 | <Bundle-Category>osgi</Bundle-Category> |
| 55 | <Bundle-SymbolicName> |
| 56 | ${project.artifactId} |
| 57 | </Bundle-SymbolicName> |
| 58 | <Service-Component> |
| 59 | * |
| 60 | </Service-Component> |
| 61 | <Private-Package> |
| 62 | org.apache.felix.servicediagnostics.sample |
| 63 | </Private-Package> |
| 64 | <Import-Package> |
| 65 | !aQute.bnd.annotation.component,!org.apache.felix.main,* |
| 66 | </Import-Package> |
| 67 | </instructions> |
| 68 | </configuration> |
| 69 | </plugin> |
| 70 | </plugins> |
| 71 | </build> |
| 72 | |
| 73 | </project> |