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> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame^] | 9 | <version>0.1.0-SNAPSHOT</version> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 10 | <relativePath>../pom.xml</relativePath> |
| 11 | </parent> |
| 12 | |
| 13 | <groupId>org.apache.felix</groupId> |
| 14 | <artifactId>servicediagnostics.sample</artifactId> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame^] | 15 | <version>0.1.0-SNAPSHOT</version> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 16 | <packaging>bundle</packaging> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame^] | 17 | <name>Sample Services and Launcher for Service Diagnostics</name> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 18 | |
| 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>servicediagnostics.core</artifactId> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame^] | 23 | <version>0.1.0-SNAPSHOT</version> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 24 | </dependency> |
| 25 | <!-- runtime dependencies. added to populate the local repository --> |
| 26 | <dependency> |
| 27 | <groupId>org.apache.felix</groupId> |
| 28 | <artifactId>org.apache.felix.main</artifactId> |
| 29 | <version>3.2.2</version> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>org.apache.felix</groupId> |
| 33 | <artifactId>org.apache.felix.http.jetty</artifactId> |
| 34 | <version>2.2.0</version> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.apache.felix</groupId> |
| 38 | <artifactId>org.apache.felix.shell</artifactId> |
| 39 | <version>1.4.2</version> |
| 40 | </dependency> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame^] | 41 | <dependency> |
| 42 | <groupId>org.scala-lang</groupId> |
| 43 | <artifactId>scala-library</artifactId> |
| 44 | <version>2.9.1</version> |
| 45 | <scope>provided</scope> |
| 46 | </dependency> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 47 | </dependencies> |
| 48 | |
| 49 | <build> |
| 50 | <plugins> |
| 51 | <plugin> |
| 52 | <groupId>org.scala-tools</groupId> |
| 53 | <artifactId>maven-scala-plugin</artifactId> |
| 54 | </plugin> |
| 55 | |
| 56 | <plugin> |
| 57 | <groupId>org.apache.felix</groupId> |
| 58 | <artifactId>maven-bundle-plugin</artifactId> |
| 59 | <configuration> |
| 60 | <instructions> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame^] | 61 | <Bundle-Category>samples</Bundle-Category> |
| 62 | <Bundle-SymbolicName> ${project.artifactId} </Bundle-SymbolicName> |
| 63 | <Service-Component> * </Service-Component> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 64 | <Private-Package> |
| 65 | org.apache.felix.servicediagnostics.sample |
| 66 | </Private-Package> |
| 67 | <Import-Package> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame^] | 68 | !aQute.bnd.annotation.component,!org.apache.felix.main,sun.misc*;resolution:=optional,* |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 69 | </Import-Package> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame^] | 70 | <Include-Resource> |
| 71 | {maven-resources},scala-library-2.9.1.jar |
| 72 | </Include-Resource> |
| 73 | <Bundle-ClassPath> |
| 74 | ., scala-library-2.9.1.jar |
| 75 | </Bundle-ClassPath> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 76 | </instructions> |
| 77 | </configuration> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </build> |
| 81 | |
| 82 | </project> |