blob: db7578bc7e24dc9ee551b0002d7219b0b0eb2a3d [file] [log] [blame]
Clement Escoffiera91a22f2008-08-08 08:01:01 +00001<!--
Clement Escoffierbfa74d02009-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 Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffierbfa74d02009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffierbfa74d02009-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 Escoffiera91a22f2008-08-08 08:01:01 +000018-->
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 Escoffierbfa74d02009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierbfa74d02009-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 Escoffier8c8af422009-07-21 19:23:09 +000030 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-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 Escoffier5d6815e2009-07-21 19:24:53 +000041 <version>${pom.version}</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000042 </dependency>
43 <dependency>
Clement Escoffier86215df2010-04-16 13:54:16 +000044 <groupId>org.osgi</groupId>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000045 <artifactId>org.osgi.core</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000046 <version>4.0.0</version>
Clement Escoffierbfa74d02009-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>
60 <Bundle-Name>${pom.name}</Bundle-Name>
61 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
62 <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 Escoffier5d6815e2009-07-21 19:24:53 +000083 <version>${pom.version}</version>
Clement Escoffierbfa74d02009-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>