blob: 3d9078f694e5179a6fe35669b4ca22d06657bc4e [file] [log] [blame]
Clement Escoffier5f6aa002009-09-04 08:32:14 +00001<!--
Clement Escoffier36940f92009-07-07 07:22:28 +00002 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
Clement Escoffierd638a4c2009-06-30 07:47:47 +00009
Clement Escoffier36940f92009-07-07 07:22:28 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierd638a4c2009-06-30 07:47:47 +000011
Clement Escoffier36940f92009-07-07 07:22:28 +000012 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
Clement Escoffierd638a4c2009-06-30 07:47:47 +000018-->
Clement Escoffierb86c9412009-07-21 18:49:49 +000019<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/maven-v4_0_0.xsd">
Clement Escoffierbfa74d02009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000024 <relativePath>../pom/pom.xml</relativePath>
25 </parent>
Clement Escoffier36940f92009-07-07 07:22:28 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Clement Escoffier36940f92009-07-07 07:22:28 +000028 <artifactId>org.apache.felix.ipojo.webconsole</artifactId>
Clement Escoffier3c4cf572011-01-30 17:07:46 +000029 <version>1.7.0-SNAPSHOT</version>
Clement Escoffierdfeeb722009-08-18 12:19:24 +000030 <name>Apache Felix iPOJO WebConsole Plugins</name>
Clement Escoffier92868712011-01-06 10:12:41 +000031
Clement Escoffierbfa74d02009-07-19 16:25:18 +000032 <description>
33 iPOJO plugin for the Apache Felix Web Console. This plugin allows introspecting an iPOJO system with the Apache Felix
34 Web Console.
35 </description>
36 <url>http://felix.apache.org/site/ipojo-webconsole-plugin.html</url>
Clement Escoffierd638a4c2009-06-30 07:47:47 +000037
Clement Escoffier36940f92009-07-07 07:22:28 +000038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-compiler-plugin</artifactId>
43 <configuration>
44 <source>1.5</source>
45 <target>1.5</target>
46 </configuration>
47 </plugin>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier530a19e2010-07-12 17:36:50 +000051 <version>2.0.1</version>
Clement Escoffier36940f92009-07-07 07:22:28 +000052 <extensions>true</extensions>
53 <configuration>
54 <instructions>
Clement Escoffier134b0062010-05-01 10:46:02 +000055 <Bundle-SymbolicName>${project.artifactId}
Clement Escoffier36940f92009-07-07 07:22:28 +000056 </Bundle-SymbolicName>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000057 <Bundle-DocURL>
58 http://felix.apache.org/site/ipojo-webconsole-plugin.html
59 </Bundle-DocURL>
Clement Escoffier36940f92009-07-07 07:22:28 +000060 <Private-Package>
Clement Escoffier0a01d432009-09-11 07:14:26 +000061 org.apache.felix.ipojo.webconsole
Clement Escoffier36940f92009-07-07 07:22:28 +000062 </Private-Package>
63 <Import-Package>*</Import-Package>
Clement Escoffier92868712011-01-06 10:12:41 +000064 <Include-Resource>
Clement Escoffier1593ef52010-07-14 18:31:13 +000065 META-INF/LICENSE=LICENSE,
66 META-INF/LICENSE.json=LICENSE.json,
67 META-INF/NOTICE=NOTICE,
68 META-INF/DEPENDENCIES=DEPENDENCIES,
69 res=src/main/resources/res
Clement Escoffierbfa74d02009-07-19 16:25:18 +000070 </Include-Resource>
Clement Escoffier530a19e2010-07-12 17:36:50 +000071 <Embed-Dependency>
72 <!-- Required for JSON data transfer -->
73 json
74 </Embed-Dependency>
Clement Escoffier36940f92009-07-07 07:22:28 +000075 </instructions>
76 </configuration>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier530a19e2010-07-12 17:36:50 +000081 <version>1.6.0</version>
Clement Escoffier36940f92009-07-07 07:22:28 +000082 <executions>
83 <execution>
84 <goals>
85 <goal>ipojo-bundle</goal>
86 </goals>
87 </execution>
88 </executions>
89 </plugin>
90 <plugin>
91 <groupId>org.codehaus.mojo</groupId>
92 <artifactId>rat-maven-plugin</artifactId>
93 <configuration>
94 <excludeSubProjects>false</excludeSubProjects>
95 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
96 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
97 <excludes>
Clement Escoffier899f8402009-07-22 06:27:39 +000098 <param>doc/**/*</param>
Clement Escoffier36940f92009-07-07 07:22:28 +000099 <param>maven-eclipse.xml</param>
100 <param>.checkstyle</param>
101 <param>.externalToolBuilders/*</param>
Clement Escoffier92868712011-01-06 10:12:41 +0000102 <param>LICENSE.*</param>
103 <param>DEPENDENCIES</param>
Clement Escoffier36940f92009-07-07 07:22:28 +0000104 </excludes>
105 </configuration>
106 </plugin>
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-checkstyle-plugin</artifactId>
110 <configuration>
111 <enableRulesSummary>false</enableRulesSummary>
112 <violationSeverity>warning</violationSeverity>
113 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
114 </configuration>
115 </plugin>
116 </plugins>
117 </build>
118 <dependencies>
119 <dependency>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>org.apache.felix.webconsole</artifactId>
Clement Escoffier92868712011-01-06 10:12:41 +0000122 <version>3.1.6</version>
Clement Escoffier36940f92009-07-07 07:22:28 +0000123 </dependency>
124 <dependency>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier92868712011-01-06 10:12:41 +0000127 <version>1.6.4</version>
Clement Escoffier36940f92009-07-07 07:22:28 +0000128 </dependency>
129 <dependency>
130 <groupId>org.apache.felix</groupId>
131 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffier92868712011-01-06 10:12:41 +0000132 <version>1.6.4</version>
Clement Escoffier36940f92009-07-07 07:22:28 +0000133 </dependency>
Clement Escoffierc3335eb2009-09-18 06:04:57 +0000134 <dependency>
135 <groupId>org.osgi</groupId>
136 <artifactId>org.osgi.core</artifactId>
137 <version>4.0.0</version>
138 </dependency>
Clement Escoffier76c6c022010-07-12 17:33:05 +0000139 <dependency>
140 <groupId>javax.servlet</groupId>
141 <artifactId>servlet-api</artifactId>
142 <version>2.3</version>
143 <scope>provided</scope>
144 </dependency>
Clement Escoffier530a19e2010-07-12 17:36:50 +0000145 <dependency>
146 <groupId>org.json</groupId>
147 <artifactId>json</artifactId>
148 <version>20070829</version>
149 <scope>compile</scope>
150 </dependency>
Clement Escoffier36940f92009-07-07 07:22:28 +0000151 </dependencies>
Clement Escoffierd638a4c2009-06-30 07:47:47 +0000152</project>