blob: e9ef19a1d0837ff4cc68c25e464ce1005c89c23c [file] [log] [blame]
Clement Escoffiera91a22f2008-08-08 08:01:01 +00001<!--
2 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 Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffiera91a22f2008-08-08 08:01:01 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffiera91a22f2008-08-08 08:01:01 +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.
18-->
Clement Escoffierb1d46d32009-01-28 10:51:27 +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 Escoffier9fc9a3c2008-08-11 09:55:34 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Clement Escoffiere2591592009-04-30 14:00:40 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000024 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix iPOJO JMX Handler</name>
29 <artifactId>org.apache.felix.ipojo.handler.jmx</artifactId>
Clement Escoffier67519152009-01-28 10:51:55 +000030 <version>1.3.0-SNAPSHOT</version>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000031 <dependencies>
32 <dependency>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000035 <version>${pom.version}</version>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000036 </dependency>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000039 <artifactId>org.osgi.core</artifactId>
Clement Escoffier31f25df2008-11-20 15:51:56 +000040 <version>1.0.1</version>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000041 </dependency>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000042 </dependencies>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000043 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000048 <extensions>true</extensions>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000049 <version>1.4.3</version>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000050 <configuration>
51 <instructions>
Clement Escoffier0b93f382009-07-03 13:16:24 +000052 <Private-Package> org.apache.felix.ipojo.handlers.jmx
Clement Escoffiera91a22f2008-08-08 08:01:01 +000053 </Private-Package>
54 <Bundle-Name>${pom.name}</Bundle-Name>
Clement Escoffier8d888352008-12-10 12:29:41 +000055 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffier31f25df2008-11-20 15:51:56 +000056 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
57 <Bundle-Description> iPOJO JMX Handler </Bundle-Description>
Clement Escoffier2ae452a2008-08-13 14:14:55 +000058 <Bundle-DocURL>
Clement Escoffier0b93f382009-07-03 13:16:24 +000059 http://felix.apache.org/site/ipojo-jmx-handler.html
Clement Escoffier2ae452a2008-08-13 14:14:55 +000060 </Bundle-DocURL>
Clement Escoffier31f25df2008-11-20 15:51:56 +000061 <Include-Resource> META-INF/LICENCE=LICENSE,
62 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000063 </instructions>
64 </configuration>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-compiler-plugin</artifactId>
69 <configuration>
70 <source>1.5</source>
71 <target>1.5</target>
72 </configuration>
73 </plugin>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier0b93f382009-07-03 13:16:24 +000077 <version>${pom.version}</version>
Clement Escoffiera91a22f2008-08-08 08:01:01 +000078 <executions>
79 <execution>
80 <goals>
81 <goal>ipojo-bundle</goal>
82 </goals>
83 <configuration>
84 <metadata>metadata.xml</metadata>
85 </configuration>
86 </execution>
87 </executions>
88 </plugin>
Clement Escoffier31f25df2008-11-20 15:51:56 +000089 <plugin>
90 <groupId>org.codehaus.mojo</groupId>
91 <artifactId>rat-maven-plugin</artifactId>
92 <configuration>
93 <excludeSubProjects>false</excludeSubProjects>
94 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
95 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
96 <excludes>
97 <param>doc/**/*</param>
98 <param>maven-eclipse.xml</param>
99 <param>.checkstyle</param>
100 <param>.externalToolBuilders/*</param>
101 <param>LICENSE.asm</param>
102 </excludes>
103 </configuration>
104 </plugin>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-checkstyle-plugin</artifactId>
108 <configuration>
109 <enableRulesSummary>false</enableRulesSummary>
110 <violationSeverity>warning</violationSeverity>
111 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
112 </configuration>
113 </plugin>
Clement Escoffiera91a22f2008-08-08 08:01:01 +0000114 </plugins>
115 </build>
Clement Escoffier31f25df2008-11-20 15:51:56 +0000116</project>