Carsten Ziegeler | c19e17c | 2008-01-03 09:15:17 +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 | fea5f96 | 2007-10-21 08:44:49 +0000 | [diff] [blame] | 19 | <project>
|
| 20 | <modelVersion>4.0.0</modelVersion>
|
| 21 | <packaging>bundle</packaging>
|
| 22 | <groupId>org.apache.felix</groupId>
|
| 23 | <artifactId>org.apache.felix.ipojo.handler.jmx</artifactId>
|
| 24 | <version>0.7.5-SNAPSHOT</version>
|
| 25 | <name>iPOJO JMX Handler</name>
|
| 26 |
|
| 27 | <dependencies>
|
| 28 | <dependency>
|
| 29 | <groupId>org.apache.felix</groupId>
|
| 30 | <artifactId>org.osgi.core</artifactId>
|
| 31 | <version>1.1.0-SNAPSHOT</version>
|
| 32 | </dependency>
|
| 33 | <dependency>
|
| 34 | <groupId>org.apache.felix</groupId>
|
| 35 | <artifactId>org.osgi.compendium</artifactId>
|
Carsten Ziegeler | c340ecf | 2008-01-28 07:21:59 +0000 | [diff] [blame] | 36 | <version>1.0.0</version> |
Clement Escoffier | fea5f96 | 2007-10-21 08:44:49 +0000 | [diff] [blame] | 37 | </dependency>
|
| 38 | <dependency>
|
| 39 | <groupId>org.apache.felix</groupId>
|
| 40 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
| 41 | <version>0.7.5-SNAPSHOT</version>
|
| 42 | </dependency>
|
| 43 | <dependency>
|
| 44 | <groupId>org.apache.felix</groupId>
|
| 45 | <artifactId>org.apache.felix.ipojo</artifactId>
|
| 46 | <version>0.7.5-SNAPSHOT</version>
|
| 47 | </dependency>
|
| 48 | </dependencies>
|
| 49 |
|
| 50 | <build>
|
| 51 | <plugins>
|
| 52 | <plugin>
|
| 53 | <groupId>org.apache.felix</groupId>
|
| 54 | <artifactId>maven-bundle-plugin</artifactId>
|
Carsten Ziegeler | 78bcc77 | 2008-01-22 07:41:16 +0000 | [diff] [blame] | 55 | <version>1.2.0</version> |
Clement Escoffier | fea5f96 | 2007-10-21 08:44:49 +0000 | [diff] [blame] | 56 | <extensions>true</extensions>
|
| 57 | <configuration>
|
| 58 | <instructions>
|
| 59 | <Private-Package>
|
| 60 | org.apache.felix.ipojo.handlers.jmx
|
| 61 | </Private-Package>
|
| 62 | <Bundle-Name>${pom.name}</Bundle-Name>
|
| 63 | <Bundle-SymbolicName>ipojo.jmx.handler</Bundle-SymbolicName>
|
| 64 | </instructions>
|
| 65 | </configuration>
|
| 66 | </plugin>
|
| 67 | <plugin>
|
| 68 | <groupId>org.apache.maven.plugins</groupId>
|
| 69 | <artifactId>maven-compiler-plugin</artifactId>
|
| 70 | <configuration>
|
| 71 | <source>1.5</source>
|
| 72 | <target>1.5</target>
|
| 73 | </configuration>
|
| 74 | </plugin>
|
Clement Escoffier | 18ecd68 | 2007-10-28 08:31:35 +0000 | [diff] [blame] | 75 | <plugin>
|
| 76 | <groupId>org.apache.felix</groupId>
|
| 77 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 78 | <version>${pom.version}</version>
|
| 79 | <executions>
|
| 80 | <execution>
|
| 81 | <goals>
|
| 82 | <goal>ipojo-bundle</goal>
|
| 83 | </goals>
|
| 84 | <configuration>
|
| 85 | <metadata>metadata.xml</metadata>
|
| 86 | </configuration>
|
| 87 | </execution>
|
| 88 | </executions>
|
| 89 | </plugin>
|
Clement Escoffier | fea5f96 | 2007-10-21 08:44:49 +0000 | [diff] [blame] | 90 | </plugins>
|
| 91 | </build>
|
| 92 | </project>
|