Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Arjun Panday | 395f389 | 2012-01-13 19:29:42 +0000 | [diff] [blame] | 2 | <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"> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 3 | |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.apache.felix</groupId> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 7 | <artifactId>servicediagnostics.parent</artifactId> |
Arjun Panday | 2dfdf64 | 2012-01-20 08:43:35 +0000 | [diff] [blame] | 8 | <version>0.1.1</version> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 9 | <relativePath>../parent/pom.xml</relativePath> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 10 | </parent> |
| 11 | |
Arjun Panday | 0ed639c | 2012-01-16 18:57:12 +0000 | [diff] [blame] | 12 | <artifactId>org.apache.felix.servicediagnostics.plugin</artifactId> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 13 | <packaging>bundle</packaging> |
Arjun Panday | fb6b1e1 | 2012-01-20 08:44:05 +0000 | [diff] [blame] | 14 | <version>0.1.2-SNAPSHOT</version> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 15 | <name>Apache Felix Web Console Service Diagnostics Plugin</name> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 16 | <description> |
| 17 | This is a plugin for the Apache Felix OSGi web console providing a graphical representation of services and missing required dependencies. |
| 18 | </description> |
| 19 | |
| 20 | <scm> |
Arjun Panday | fb6b1e1 | 2012-01-20 08:44:05 +0000 | [diff] [blame] | 21 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/servicediagnostics/core</connection> |
| 22 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/servicediagnostics/core</developerConnection> |
| 23 | <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/servicediagnostics/core</url> |
Arjun Panday | 0e4eacc | 2012-01-20 08:21:21 +0000 | [diff] [blame] | 24 | </scm> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 25 | |
| 26 | <dependencies> |
| 27 | <dependency> |
| 28 | <groupId>org.apache.felix</groupId> |
| 29 | <artifactId>org.apache.felix.webconsole</artifactId> |
| 30 | <version>3.1.8</version> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>org.apache.felix</groupId> |
| 34 | <artifactId>javax.servlet</artifactId> |
| 35 | <version>1.0.0</version> |
| 36 | </dependency> |
| 37 | <dependency> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 38 | <groupId>org.scala-lang</groupId> |
| 39 | <artifactId>scala-library</artifactId> |
| 40 | <version>2.9.1</version> |
| 41 | <scope>provided</scope> |
| 42 | </dependency> |
| 43 | <dependency> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 44 | <groupId>org.json</groupId> |
| 45 | <artifactId>json</artifactId> |
| 46 | <version>20090211</version> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 47 | <scope>provided</scope> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 48 | </dependency> |
| 49 | </dependencies> |
| 50 | |
| 51 | <build> |
| 52 | <plugins> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>maven-bundle-plugin</artifactId> |
| 56 | <configuration> |
| 57 | <instructions> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 58 | <Bundle-Category>webconsole</Bundle-Category> |
| 59 | <Bundle-SymbolicName> ${project.artifactId} </Bundle-SymbolicName> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 60 | <Bundle-Activator> |
| 61 | org.apache.felix.servicediagnostics.impl.Activator |
| 62 | </Bundle-Activator> |
| 63 | <Export-Package> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 64 | org.apache.felix.servicediagnostics;version=0.1 |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 65 | </Export-Package> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 66 | <Import-Package> |
| 67 | sun.misc*;resolution:=optional, * |
| 68 | </Import-Package> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 69 | <Private-Package> |
| 70 | org.apache.felix.servicediagnostics.impl, |
| 71 | org.apache.felix.servicediagnostics.webconsole |
| 72 | </Private-Package> |
| 73 | <Include-Resource> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 74 | {maven-resources}, json-20090211.jar, scala-library-2.9.1.jar |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 75 | </Include-Resource> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 76 | <Bundle-ClassPath> |
| 77 | ., json-20090211.jar, scala-library-2.9.1.jar |
| 78 | </Bundle-ClassPath> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 79 | </instructions> |
| 80 | </configuration> |
| 81 | </plugin> |
Arjun Panday | 594e824 | 2011-12-29 20:57:25 +0000 | [diff] [blame] | 82 | <plugin> |
| 83 | <groupId>org.apache.rat</groupId> |
| 84 | <artifactId>apache-rat-plugin</artifactId> |
| 85 | <configuration> |
| 86 | <includes> |
| 87 | <include>src/**</include> |
| 88 | </includes> |
| 89 | <excludes> |
| 90 | <exclude>src/main/appended-resources/**</exclude> |
| 91 | <exclude>src/main/resources/html/js/jquery-1.7.1.min.js</exclude> |
| 92 | <exclude>src/main/resources/html/js/raphael-1.3.1.min.js</exclude> |
| 93 | <exclude>src/main/resources/html/js/graffle-1.3.1.js</exclude> |
| 94 | <exclude>src/main/resources/html/js/graph.js</exclude> |
| 95 | </excludes> |
| 96 | </configuration> |
| 97 | </plugin> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 98 | </plugins> |
| 99 | </build> |
Carsten Ziegeler | db30186 | 2011-11-18 09:40:49 +0000 | [diff] [blame] | 100 | </project> |