Clement Escoffier | 2e43019 | 2013-02-27 15:59:42 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 19 | <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 Escoffier | 2e43019 | 2013-02-27 15:59:42 +0000 | [diff] [blame] | 22 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 23 | <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 Escoffier | b76fae7 | 2013-05-28 04:37:54 +0000 | [diff] [blame] | 35 | <url> |
| 36 | http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/describing-components/ipojo-jmx-handler.html |
| 37 | </url> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 38 | |
| 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 Escoffier | 1172b61 | 2013-03-17 19:44:50 +0000 | [diff] [blame] | 55 | <Private-Package> |
| 56 | org.apache.felix.ipojo.handlers.jmx |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 57 | </Private-Package> |
Clement Escoffier | 1172b61 | 2013-03-17 19:44:50 +0000 | [diff] [blame] | 58 | <Import-Package> |
| 59 | org.osgi.framework;version=1.5, * |
| 60 | </Import-Package> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 61 | <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 Escoffier | b76fae7 | 2013-05-28 04:37:54 +0000 | [diff] [blame] | 66 | http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/describing-components/ipojo-jmx-handler.html |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 67 | </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 Escoffier | 2e43019 | 2013-02-27 15:59:42 +0000 | [diff] [blame] | 105 | </project> |