Clement Escoffier | a91a22f | 2008-08-08 08:01:01 +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 | --> |
| 19 | <project> |
Clement Escoffier | 9fc9a3c | 2008-08-11 09:55:34 +0000 | [diff] [blame^] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
| 23 | <version>1.0.2</version> |
| 24 | <relativePath>../../pom/pom.xml</relativePath> |
| 25 | </parent> |
Clement Escoffier | a91a22f | 2008-08-08 08:01:01 +0000 | [diff] [blame] | 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 Escoffier | a91a22f | 2008-08-08 08:01:01 +0000 | [diff] [blame] | 30 | <version>0.9.0-SNAPSHOT</version> |
| 31 | |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.apache.felix</groupId> |
| 35 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 36 | <version>0.9.0-SNAPSHOT</version> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
| 41 | <version>0.9.0-SNAPSHOT</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.apache.felix</groupId> |
| 45 | <artifactId>org.osgi.core</artifactId> |
| 46 | <version>1.0.0</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.felix</groupId> |
| 50 | <artifactId>org.osgi.compendium</artifactId> |
| 51 | <version>1.0.0</version> |
| 52 | </dependency> |
| 53 | </dependencies> |
| 54 | |
| 55 | <build> |
| 56 | <plugins> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.felix</groupId> |
| 59 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | a91a22f | 2008-08-08 08:01:01 +0000 | [diff] [blame] | 60 | <extensions>true</extensions> |
Clement Escoffier | 9fc9a3c | 2008-08-11 09:55:34 +0000 | [diff] [blame^] | 61 | <version>1.4.2</version> |
Clement Escoffier | a91a22f | 2008-08-08 08:01:01 +0000 | [diff] [blame] | 62 | <configuration> |
| 63 | <instructions> |
| 64 | <Private-Package> |
| 65 | org.apache.felix.ipojo.handlers.jmx |
| 66 | </Private-Package> |
| 67 | <Bundle-Name>${pom.name}</Bundle-Name> |
| 68 | <Bundle-SymbolicName> |
| 69 | org.apache.felix.ipojo.handler.jmx |
| 70 | </Bundle-SymbolicName> |
| 71 | <Bundle-Vendor>The Apache Software |
| 72 | Foundation</Bundle-Vendor> |
| 73 | <Include-Resource> |
| 74 | META-INF/LICENCE=LICENSE, |
| 75 | META-INF/NOTICE=NOTICE |
| 76 | </Include-Resource> |
| 77 | </instructions> |
| 78 | </configuration> |
| 79 | </plugin> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.maven.plugins</groupId> |
| 82 | <artifactId>maven-compiler-plugin</artifactId> |
| 83 | <configuration> |
| 84 | <source>1.5</source> |
| 85 | <target>1.5</target> |
| 86 | </configuration> |
| 87 | </plugin> |
| 88 | <plugin> |
| 89 | <groupId>org.apache.felix</groupId> |
| 90 | <artifactId>maven-ipojo-plugin</artifactId> |
| 91 | <version>0.9.0-SNAPSHOT</version> |
| 92 | <executions> |
| 93 | <execution> |
| 94 | <goals> |
| 95 | <goal>ipojo-bundle</goal> |
| 96 | </goals> |
| 97 | <configuration> |
| 98 | <metadata>metadata.xml</metadata> |
| 99 | </configuration> |
| 100 | </execution> |
| 101 | </executions> |
| 102 | </plugin> |
| 103 | </plugins> |
| 104 | </build> |
| 105 | </project> |