blob: 37636b77593df0f3d552ec1376d6db42d1a3c84a [file] [log] [blame]
Clement Escoffier2e430192013-02-27 15:59:42 +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
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 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 Escoffiered4ca022013-03-13 15:27:20 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
Clement Escoffier2e430192013-02-27 15:59:42 +000022 <groupId>org.apache.felix</groupId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000023 <artifactId>felix-parent</artifactId>
24 <version>2.1</version>
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>
30 <version>1.5.0-SNAPSHOT</version>
31
32 <description>
33 iPOJO extension to expose instances as MBean inside a MBean Server.
34 </description>
Clement Escoffierb76fae72013-05-28 04:37:54 +000035 <url>
36 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/describing-components/ipojo-jmx-handler.html
37 </url>
Clement Escoffiered4ca022013-03-13 15:27:20 +000038
39 <dependencies>
40 <dependency>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>org.apache.felix.ipojo</artifactId>
43 <version>1.8.6</version>
44 </dependency>
45 </dependencies>
46 <build>
47 <plugins>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-bundle-plugin</artifactId>
51 <extensions>true</extensions>
52 <version>2.3.7</version>
53 <configuration>
54 <instructions>
Clement Escoffier1172b612013-03-17 19:44:50 +000055 <Private-Package>
56 org.apache.felix.ipojo.handlers.jmx
Clement Escoffiered4ca022013-03-13 15:27:20 +000057 </Private-Package>
Clement Escoffier1172b612013-03-17 19:44:50 +000058 <Import-Package>
59 org.osgi.framework;version=1.5, *
60 </Import-Package>
Clement Escoffiered4ca022013-03-13 15:27:20 +000061 <Bundle-Name>${project.name}</Bundle-Name>
62 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
63 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
64 <Bundle-Description>iPOJO JMX Handler</Bundle-Description>
65 <Bundle-DocURL>
Clement Escoffierb76fae72013-05-28 04:37:54 +000066 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/describing-components/ipojo-jmx-handler.html
Clement Escoffiered4ca022013-03-13 15:27:20 +000067 </Bundle-DocURL>
68 </instructions>
69 </configuration>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-compiler-plugin</artifactId>
74 <configuration>
75 <source>1.5</source>
76 <target>1.5</target>
77 </configuration>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-ipojo-plugin</artifactId>
82 <version>1.8.6</version>
83 <executions>
84 <execution>
85 <goals>
86 <goal>ipojo-bundle</goal>
87 </goals>
88 <configuration>
89 <metadata>metadata.xml</metadata>
90 </configuration>
91 </execution>
92 </executions>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-checkstyle-plugin</artifactId>
97 <configuration>
98 <enableRulesSummary>false</enableRulesSummary>
99 <violationSeverity>warning</violationSeverity>
100 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
101 </configuration>
102 </plugin>
103 </plugins>
104 </build>
Clement Escoffier2e430192013-02-27 15:59:42 +0000105</project>