blob: e0d35ab8f371bf9f418d2a6c6802924463c56c72 [file] [log] [blame]
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +00001<?xml version="1.0" encoding="UTF-8"?>
Arjun Pandaybb895042012-01-13 19:29:42 +00002<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 Ziegelerf76e64b2011-11-18 09:40:49 +00003
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.apache.felix</groupId>
7 <artifactId>servicediagnostics</artifactId>
Arjun Pandaybb895042012-01-13 19:29:42 +00008 <version>0.1.0</version>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +00009 <relativePath>../pom.xml</relativePath>
10 </parent>
11
Arjun Panday28d29492011-12-29 20:57:25 +000012 <artifactId>${project.groupId}.servicediagnostics.plugin</artifactId>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000013 <packaging>bundle</packaging>
Arjun Pandaybb895042012-01-13 19:29:42 +000014 <version>0.1.0</version>
Arjun Panday28d29492011-12-29 20:57:25 +000015 <name>Apache Felix Web Console Service Diagnostics Plugin</name>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000016
Arjun Panday599fd6f2012-01-15 18:44:46 +000017 <scm>
18 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/servicediagnostics/core</connection>
19 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/servicediagnostics/core</developerConnection>
20 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/servicediagnostics/core</url>
21 </scm>
22
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000023 <dependencies>
24 <dependency>
25 <groupId>org.apache.felix</groupId>
26 <artifactId>org.apache.felix.webconsole</artifactId>
27 <version>3.1.8</version>
28 </dependency>
29 <dependency>
30 <groupId>org.apache.felix</groupId>
31 <artifactId>javax.servlet</artifactId>
32 <version>1.0.0</version>
33 </dependency>
34 <dependency>
Arjun Panday28d29492011-12-29 20:57:25 +000035 <groupId>org.scala-lang</groupId>
36 <artifactId>scala-library</artifactId>
37 <version>2.9.1</version>
38 <scope>provided</scope>
39 </dependency>
40 <dependency>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000041 <groupId>org.json</groupId>
42 <artifactId>json</artifactId>
43 <version>20090211</version>
Arjun Panday28d29492011-12-29 20:57:25 +000044 <scope>provided</scope>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000045 </dependency>
46 </dependencies>
47
48 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
53 <configuration>
54 <instructions>
Arjun Panday28d29492011-12-29 20:57:25 +000055 <Bundle-Category>webconsole</Bundle-Category>
56 <Bundle-SymbolicName> ${project.artifactId} </Bundle-SymbolicName>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000057 <Bundle-Activator>
58 org.apache.felix.servicediagnostics.impl.Activator
59 </Bundle-Activator>
60 <Export-Package>
Arjun Panday28d29492011-12-29 20:57:25 +000061 org.apache.felix.servicediagnostics;version=0.1
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000062 </Export-Package>
Arjun Panday28d29492011-12-29 20:57:25 +000063 <Import-Package>
64 sun.misc*;resolution:=optional, *
65 </Import-Package>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000066 <Private-Package>
67 org.apache.felix.servicediagnostics.impl,
68 org.apache.felix.servicediagnostics.webconsole
69 </Private-Package>
70 <Include-Resource>
Arjun Panday28d29492011-12-29 20:57:25 +000071 {maven-resources}, json-20090211.jar, scala-library-2.9.1.jar
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000072 </Include-Resource>
Arjun Panday28d29492011-12-29 20:57:25 +000073 <Bundle-ClassPath>
74 ., json-20090211.jar, scala-library-2.9.1.jar
75 </Bundle-ClassPath>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000076 </instructions>
77 </configuration>
78 </plugin>
Arjun Panday28d29492011-12-29 20:57:25 +000079 <plugin>
80 <groupId>org.apache.rat</groupId>
81 <artifactId>apache-rat-plugin</artifactId>
82 <configuration>
83 <includes>
84 <include>src/**</include>
85 </includes>
86 <excludes>
87 <exclude>src/main/appended-resources/**</exclude>
88 <exclude>src/main/resources/html/js/jquery-1.7.1.min.js</exclude>
89 <exclude>src/main/resources/html/js/raphael-1.3.1.min.js</exclude>
90 <exclude>src/main/resources/html/js/graffle-1.3.1.js</exclude>
91 <exclude>src/main/resources/html/js/graph.js</exclude>
92 </excludes>
93 </configuration>
94 </plugin>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +000095 </plugins>
96 </build>
97
Arjun Pandaybb895042012-01-13 19:29:42 +000098
99 <scm>
100 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.servicediagnostics.plugin-0.1.0</connection>
101 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.servicediagnostics.plugin-0.1.0</developerConnection>
102 <url>http://svn.apache.org/viewvc/felix/releases/org.apache.felix.servicediagnostics.plugin-0.1.0</url>
103 </scm>
Carsten Ziegelerf76e64b2011-11-18 09:40:49 +0000104</project>