blob: 714ee1cd9025ecb21245a89cf534156c6a0f6e38 [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 Escoffiera374b1e2013-05-15 16:22:01 +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 Escoffierdc46b482013-05-15 16:21:38 +000020 <parent>
Clement Escoffier36940f92009-07-07 07:22:28 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffierdc46b482013-05-15 16:21:38 +000022 <artifactId>felix-parent</artifactId>
23 <version>2.1</version>
24 </parent>
25 <modelVersion>4.0.0</modelVersion>
26 <packaging>bundle</packaging>
27 <artifactId>org.apache.felix.ipojo.webconsole</artifactId>
Clement Escoffier2c877962013-05-15 16:22:23 +000028 <version>1.7.1-SNAPSHOT</version>
Clement Escoffierdc46b482013-05-15 16:21:38 +000029 <name>Apache Felix iPOJO WebConsole Plugins</name>
30
31 <description>
32 iPOJO plugin for the Apache Felix Web Console. This plugin allows introspecting an iPOJO system with the Apache
33 Felix
34 Web Console.
35 </description>
Clement Escoffierf05a0292013-05-21 08:56:19 +000036 <url>http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-webconsole-plugin.html</url>
Clement Escoffierdc46b482013-05-15 16:21:38 +000037
38 <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>
51 <version>2.3.7</version>
52 <extensions>true</extensions>
53 <configuration>
54 <instructions>
55 <Bundle-SymbolicName>${project.artifactId}
56 </Bundle-SymbolicName>
57 <Bundle-DocURL>
Clement Escoffierf05a0292013-05-21 08:56:19 +000058 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-webconsole-plugin.html
Clement Escoffierdc46b482013-05-15 16:21:38 +000059 </Bundle-DocURL>
60 <Private-Package>
61 org.apache.felix.ipojo.webconsole
62 </Private-Package>
63 <Import-Package>*</Import-Package>
64 </instructions>
65 </configuration>
66 </plugin>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-ipojo-plugin</artifactId>
70 <version>1.8.6</version>
71 <executions>
72 <execution>
73 <goals>
74 <goal>ipojo-bundle</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-checkstyle-plugin</artifactId>
82 <configuration>
83 <enableRulesSummary>false</enableRulesSummary>
84 <violationSeverity>warning</violationSeverity>
85 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
90 <dependencies>
91 <dependency>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>org.apache.felix.webconsole</artifactId>
94 <version>4.0.0</version>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierdb8b33f2014-01-16 11:02:02 +000099 <version>1.11.0</version>
Clement Escoffierdc46b482013-05-15 16:21:38 +0000100 </dependency>
101 <dependency>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffierdb8b33f2014-01-16 11:02:02 +0000104 <version>1.11.0</version>
Clement Escoffierdc46b482013-05-15 16:21:38 +0000105 </dependency>
106 <dependency>
107 <groupId>org.osgi</groupId>
108 <artifactId>org.osgi.core</artifactId>
109 <version>4.0.0</version>
110 </dependency>
111 <dependency>
112 <groupId>javax.servlet</groupId>
113 <artifactId>servlet-api</artifactId>
114 <version>2.3</version>
115 <scope>provided</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.json</groupId>
119 <artifactId>json</artifactId>
120 <version>20070829</version>
121 <scope>compile</scope>
122 </dependency>
123 </dependencies>
124
125 <scm>
Clement Escoffier2c877962013-05-15 16:22:23 +0000126 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/ipojo/webconsole-plugin</connection>
127 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/ipojo/webconsole-plugin</developerConnection>
128 <url>http://svn.apache.org/viewvc/felix/trunk/ipojo/webconsole-plugin</url>
Clement Escoffierdc46b482013-05-15 16:21:38 +0000129 </scm>
Clement Escoffierd638a4c2009-06-30 07:47:47 +0000130</project>