| <?xml version="1.0" encoding="UTF-8"?> |
| <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/xsd/maven-4.0.0.xsd"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>servicediagnostics</artifactId> |
| <version>0.1.0-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <groupId>org.apache.felix</groupId> |
| <artifactId>servicediagnostics.sample</artifactId> |
| <version>0.1.0-SNAPSHOT</version> |
| <packaging>bundle</packaging> |
| <name>Sample Services and Launcher for Service Diagnostics</name> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>${project.groupId}.servicediagnostics.plugin</artifactId> |
| <version>0.1.0-SNAPSHOT</version> |
| </dependency> |
| <!-- runtime dependencies. added to populate the local repository --> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.main</artifactId> |
| <version>3.2.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.http.jetty</artifactId> |
| <version>2.2.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.shell</artifactId> |
| <version>1.4.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-library</artifactId> |
| <version>2.9.1</version> |
| <scope>provided</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.scala-tools</groupId> |
| <artifactId>maven-scala-plugin</artifactId> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <configuration> |
| <instructions> |
| <Bundle-Category>samples</Bundle-Category> |
| <Bundle-SymbolicName> ${project.artifactId} </Bundle-SymbolicName> |
| <Service-Component> * </Service-Component> |
| <Private-Package> |
| org.apache.felix.servicediagnostics.sample |
| </Private-Package> |
| <Import-Package> |
| !aQute.bnd.annotation.component,!org.apache.felix.main,sun.misc*;resolution:=optional,* |
| </Import-Package> |
| <Include-Resource> |
| {maven-resources},scala-library-2.9.1.jar |
| </Include-Resource> |
| <Bundle-ClassPath> |
| ., scala-library-2.9.1.jar |
| </Bundle-ClassPath> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |