blob: 360401585f3cc029301c0bc10613470ecc0437e1 [file] [log] [blame]
Clement Escoffierd638a4c2009-06-30 07:47:47 +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-->
19<project>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
24 <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>
29 <version>1.3.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000030 <name>Apache Felix iPOJO WebConsole Plugin</name>
31
32 <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>
51 <version>1.4.3</version>
52 <extensions>true</extensions>
53 <configuration>
54 <instructions>
55 <Bundle-SymbolicName>${pom.artifactId}
56 </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>
61 org.apache.felix.org.apache.felix.ipojo.webconsole
62 </Private-Package>
63 <Import-Package>*</Import-Package>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000064 <Include-Resource> META-INF/LICENSE=LICENSE,
65 META-INF/NOTICE=NOTICE
66 </Include-Resource>
Clement Escoffier36940f92009-07-07 07:22:28 +000067 </instructions>
68 </configuration>
69 </plugin>
70 <plugin>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>maven-ipojo-plugin</artifactId>
73 <executions>
74 <execution>
75 <goals>
76 <goal>ipojo-bundle</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin>
81 <plugin>
82 <groupId>org.codehaus.mojo</groupId>
83 <artifactId>rat-maven-plugin</artifactId>
84 <configuration>
85 <excludeSubProjects>false</excludeSubProjects>
86 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
87 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
88 <excludes>
89 <param>doc/*</param>
90 <param>maven-eclipse.xml</param>
91 <param>.checkstyle</param>
92 <param>.externalToolBuilders/*</param>
93 <param>LICENSE.asm</param>
94 </excludes>
95 </configuration>
96 </plugin>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-checkstyle-plugin</artifactId>
100 <configuration>
101 <enableRulesSummary>false</enableRulesSummary>
102 <violationSeverity>warning</violationSeverity>
103 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
104 </configuration>
105 </plugin>
106 </plugins>
107 </build>
108 <dependencies>
109 <dependency>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>org.apache.felix.webconsole</artifactId>
Clement Escoffierde57c1a2009-07-17 08:10:38 +0000112 <version>1.2.10</version>
Clement Escoffier36940f92009-07-07 07:22:28 +0000113 </dependency>
114 <dependency>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>org.apache.felix.ipojo</artifactId>
117 <version>${pom.version}</version>
118 </dependency>
119 <dependency>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
122 <version>${pom.version}</version>
123 </dependency>
124 </dependencies>
Clement Escoffierd638a4c2009-06-30 07:47:47 +0000125</project>