blob: 4df40aa5ed5ad548cd997bfbd471d42fb919ff1a [file] [log] [blame]
Clement Escoffiere6a71552008-08-08 08:01:01 +00001<!--
Clement Escoffier0630c6b2009-07-19 16:25:18 +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 Escoffierc80b73d2009-07-03 13:16:24 +00009
Clement Escoffier0630c6b2009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffier0630c6b2009-07-19 16:25:18 +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 Escoffiere6a71552008-08-08 08:01:01 +000018-->
Clement Escoffierf2e2d322009-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 Escoffier0630c6b2009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000024 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <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 Escoffiere2962102009-07-21 19:23:09 +000030 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000031
32 <description>
33 iPOJO extension to expose instances as MBean inside a MBean Server.
34 </description>
35 <url>http://felix.apache.org/site/ipojo-jmx-handler.html</url>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierfe606902010-05-01 10:46:02 +000041 <version>${project.version}</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000042 </dependency>
43 <dependency>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000044 <groupId>org.osgi</groupId>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000045 <artifactId>org.osgi.core</artifactId>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000046 <version>4.0.0</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000047 </dependency>
48 </dependencies>
49 <build>
50 <plugins>
51 <plugin>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>maven-bundle-plugin</artifactId>
54 <extensions>true</extensions>
55 <version>1.4.3</version>
56 <configuration>
57 <instructions>
58 <Private-Package> org.apache.felix.ipojo.handlers.jmx
59 </Private-Package>
Clement Escoffierfe606902010-05-01 10:46:02 +000060 <Bundle-Name>${project.name}</Bundle-Name>
61 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000062 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
63 <Bundle-Description> iPOJO JMX Handler </Bundle-Description>
64 <Bundle-DocURL>
65 http://felix.apache.org/site/ipojo-jmx-handler.html
66 </Bundle-DocURL>
67 <Include-Resource> META-INF/LICENSE=LICENSE,
68 META-INF/NOTICE=NOTICE </Include-Resource>
69 </instructions>
70 </configuration>
71 </plugin>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-compiler-plugin</artifactId>
75 <configuration>
76 <source>1.5</source>
77 <target>1.5</target>
78 </configuration>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierfe606902010-05-01 10:46:02 +000083 <version>${project.version}</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000084 <executions>
85 <execution>
86 <goals>
87 <goal>ipojo-bundle</goal>
88 </goals>
89 <configuration>
90 <metadata>metadata.xml</metadata>
91 </configuration>
92 </execution>
93 </executions>
94 </plugin>
95 <plugin>
96 <groupId>org.codehaus.mojo</groupId>
97 <artifactId>rat-maven-plugin</artifactId>
98 <configuration>
99 <excludeSubProjects>false</excludeSubProjects>
100 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
101 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
102 <excludes>
103 <param>doc/**/*</param>
104 <param>maven-eclipse.xml</param>
105 <param>.checkstyle</param>
106 <param>.externalToolBuilders/*</param>
107 <param>LICENSE.asm</param>
108 </excludes>
109 </configuration>
110 </plugin>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-checkstyle-plugin</artifactId>
114 <configuration>
115 <enableRulesSummary>false</enableRulesSummary>
116 <violationSeverity>warning</violationSeverity>
117 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
122</project>