blob: 166325b4da3bf96f397e85bd2959c35d8509e3ab [file] [log] [blame]
Clement Escoffier317d2dc2009-06-30 07:47:47 +00001<!--
Clement Escoffierc20221f2009-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 Escoffier317d2dc2009-06-30 07:47:47 +00009
Clement Escoffierc20221f2009-07-07 07:22:28 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier317d2dc2009-06-30 07:47:47 +000011
Clement Escoffierc20221f2009-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 Escoffier317d2dc2009-06-30 07:47:47 +000018-->
Clement Escoffier81422662009-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 Escoffier0630c6b2009-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 Escoffierc20221f2009-07-07 07:22:28 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Clement Escoffierc20221f2009-07-07 07:22:28 +000028 <artifactId>org.apache.felix.ipojo.webconsole</artifactId>
Clement Escoffier8b7f6da2009-07-21 18:50:06 +000029 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier1ee7d182009-08-18 12:19:24 +000030 <name>Apache Felix iPOJO WebConsole Plugins</name>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000031
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 Escoffier317d2dc2009-06-30 07:47:47 +000037
Clement Escoffierc20221f2009-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 Escoffier0630c6b2009-07-19 16:25:18 +000057 <Bundle-DocURL>
58 http://felix.apache.org/site/ipojo-webconsole-plugin.html
59 </Bundle-DocURL>
Clement Escoffierc20221f2009-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 Escoffier0630c6b2009-07-19 16:25:18 +000064 <Include-Resource> META-INF/LICENSE=LICENSE,
65 META-INF/NOTICE=NOTICE
66 </Include-Resource>
Clement Escoffierc20221f2009-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>
Clement Escoffieree0a8cd2009-07-22 06:27:39 +000089 <param>doc/**/*</param>
Clement Escoffierc20221f2009-07-07 07:22:28 +000090 <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 Escoffierb062a702009-07-17 08:10:38 +0000112 <version>1.2.10</version>
Clement Escoffierc20221f2009-07-07 07:22:28 +0000113 </dependency>
114 <dependency>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier7d84e9b2009-08-21 10:43:25 +0000117 <!-- <version>${pom.version}</version> -->
118 <version>1.4.0</version>
Clement Escoffierc20221f2009-07-07 07:22:28 +0000119 </dependency>
120 <dependency>
121 <groupId>org.apache.felix</groupId>
122 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffier7d84e9b2009-08-21 10:43:25 +0000123 <!-- <version>${pom.version}</version> -->
124 <version>1.4.0</version>
Clement Escoffierc20221f2009-07-07 07:22:28 +0000125 </dependency>
126 </dependencies>
Clement Escoffier317d2dc2009-06-30 07:47:47 +0000127</project>