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> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 8 | <artifactId>servicediagnostics.parent</artifactId> |
Arjun Panday | e7cf56c | 2013-09-16 12:52:41 +0000 | [diff] [blame] | 9 | <version>0.1.4-SNAPSHOT</version> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 10 | <relativePath>../parent/pom.xml</relativePath> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <groupId>org.apache.felix</groupId> |
| 14 | <artifactId>servicediagnostics.sample</artifactId> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 15 | <version>0.1.1-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 | |
Arjun Panday | 0462b39 | 2012-11-07 18:55:10 +0000 | [diff] [blame] | 19 | <repositories> |
| 20 | <repository> |
| 21 | <id>com.springsource.repository.bundles.release</id> |
| 22 | <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name> |
| 23 | <url>http://repository.springsource.com/maven/bundles/release</url> |
| 24 | </repository> |
| 25 | <repository> |
| 26 | <id>com.springsource.repository.bundles.external</id> |
| 27 | <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
| 28 | <url>http://repository.springsource.com/maven/bundles/external</url> |
| 29 | </repository> |
| 30 | </repositories> |
| 31 | |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.apache.felix</groupId> |
Arjun Panday | 1bf710c | 2013-02-13 13:31:45 +0000 | [diff] [blame] | 35 | <artifactId>org.apache.felix.servicediagnostics.plugin</artifactId> |
Arjun Panday | e7cf56c | 2013-09-16 12:52:41 +0000 | [diff] [blame] | 36 | <version>0.1.4-SNAPSHOT</version> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 37 | </dependency> |
| 38 | <!-- runtime dependencies. added to populate the local repository --> |
Arjun Panday | 0462b39 | 2012-11-07 18:55:10 +0000 | [diff] [blame] | 39 | <dependency> |
| 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>org.apache.felix.webconsole.plugins.shell</artifactId> |
| 42 | <version>1.0.0-SNAPSHOT</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>org.apache.felix.webconsole.plugins.ds</artifactId> |
| 47 | <version>1.0.0</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.commons</groupId> |
| 51 | <artifactId>com.springsource.org.apache.commons.fileupload</artifactId> |
| 52 | <version>1.2.1</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.apache.commons</groupId> |
| 56 | <artifactId>com.springsource.org.apache.commons.io</artifactId> |
| 57 | <version>1.4.0</version> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.apache.geronimo.bundles</groupId> |
| 61 | <artifactId>json</artifactId> |
| 62 | <version>20090211_1</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.apache.felix</groupId> |
| 66 | <artifactId>org.apache.felix.dependencymanager.shell</artifactId> |
| 67 | <version>3.0.0</version> |
| 68 | </dependency> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>org.apache.felix</groupId> |
| 71 | <artifactId>org.apache.felix.main</artifactId> |
Arjun Panday | 0462b39 | 2012-11-07 18:55:10 +0000 | [diff] [blame] | 72 | <version>4.0.3</version> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.apache.felix</groupId> |
| 76 | <artifactId>org.apache.felix.http.jetty</artifactId> |
| 77 | <version>2.2.0</version> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.apache.felix</groupId> |
| 81 | <artifactId>org.apache.felix.shell</artifactId> |
Arjun Panday | 0462b39 | 2012-11-07 18:55:10 +0000 | [diff] [blame] | 82 | <version>1.4.3</version> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 83 | </dependency> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 84 | <dependency> |
Arjun Panday | a456016 | 2013-09-16 13:53:27 +0000 | [diff] [blame] | 85 | <groupId>org.scala-lang</groupId> |
| 86 | <artifactId>scala-library</artifactId> |
Arjun Panday | 1bf710c | 2013-02-13 13:31:45 +0000 | [diff] [blame] | 87 | <version>2.10.0</version> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 88 | </dependency> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 89 | </dependencies> |
| 90 | |
| 91 | <build> |
| 92 | <plugins> |
| 93 | <plugin> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 94 | <groupId>org.apache.felix</groupId> |
| 95 | <artifactId>maven-bundle-plugin</artifactId> |
| 96 | <configuration> |
| 97 | <instructions> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 98 | <Bundle-Category>samples</Bundle-Category> |
| 99 | <Bundle-SymbolicName> ${project.artifactId} </Bundle-SymbolicName> |
Arjun Panday | 0462b39 | 2012-11-07 18:55:10 +0000 | [diff] [blame] | 100 | <Bundle-Activator> org.apache.felix.servicediagnostics.sample.TestDM </Bundle-Activator> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 101 | <Service-Component> * </Service-Component> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 102 | <Private-Package> |
| 103 | org.apache.felix.servicediagnostics.sample |
| 104 | </Private-Package> |
| 105 | <Import-Package> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 106 | !aQute.bnd.annotation.component,!org.apache.felix.main,sun.misc*;resolution:=optional,* |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 107 | </Import-Package> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 108 | <Include-Resource> |
Arjun Panday | 0462b39 | 2012-11-07 18:55:10 +0000 | [diff] [blame] | 109 | {maven-resources} |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 110 | </Include-Resource> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 111 | </instructions> |
| 112 | </configuration> |
| 113 | </plugin> |
| 114 | </plugins> |
| 115 | </build> |
| 116 | |
| 117 | </project> |