blob: 8f3acae35964cef1612d1afbe1db093070f54ea7 [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 Escoffier36940f92009-07-07 07:22:28 +000020 <modelVersion>4.0.0</modelVersion>
21 <packaging>bundle</packaging>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>org.apache.felix.ipojo.webconsole</artifactId>
24 <version>1.3.0-SNAPSHOT</version>
25 <name>Apche Felix iPOJO WebConsole Plugins</name>
Clement Escoffierd638a4c2009-06-30 07:47:47 +000026
Clement Escoffier36940f92009-07-07 07:22:28 +000027 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-compiler-plugin</artifactId>
32 <configuration>
33 <source>1.5</source>
34 <target>1.5</target>
35 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>maven-bundle-plugin</artifactId>
40 <version>1.4.3</version>
41 <extensions>true</extensions>
42 <configuration>
43 <instructions>
44 <Bundle-SymbolicName>${pom.artifactId}
45 </Bundle-SymbolicName>
46 <Private-Package>
47 org.apache.felix.org.apache.felix.ipojo.webconsole
48 </Private-Package>
49 <Import-Package>*</Import-Package>
50 </instructions>
51 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>maven-ipojo-plugin</artifactId>
56 <executions>
57 <execution>
58 <goals>
59 <goal>ipojo-bundle</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
64 <plugin>
65 <groupId>org.codehaus.mojo</groupId>
66 <artifactId>rat-maven-plugin</artifactId>
67 <configuration>
68 <excludeSubProjects>false</excludeSubProjects>
69 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
70 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
71 <excludes>
72 <param>doc/*</param>
73 <param>maven-eclipse.xml</param>
74 <param>.checkstyle</param>
75 <param>.externalToolBuilders/*</param>
76 <param>LICENSE.asm</param>
77 </excludes>
78 </configuration>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-checkstyle-plugin</artifactId>
83 <configuration>
84 <enableRulesSummary>false</enableRulesSummary>
85 <violationSeverity>warning</violationSeverity>
86 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
87 </configuration>
88 </plugin>
89 </plugins>
90 </build>
91 <dependencies>
92 <dependency>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>org.apache.felix.webconsole</artifactId>
95 <version>1.2.11-SNAPSHOT</version>
96 </dependency>
97 <dependency>
98 <groupId>org.apache.felix</groupId>
99 <artifactId>org.apache.felix.ipojo</artifactId>
100 <version>${pom.version}</version>
101 </dependency>
102 <dependency>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
105 <version>${pom.version}</version>
106 </dependency>
107 </dependencies>
Clement Escoffierd638a4c2009-06-30 07:47:47 +0000108</project>