blob: 3f7e893d906764d391419b5e6fff35cb01cefdcd [file] [log] [blame]
Clement Escoffiere6a71552008-08-08 08:01:01 +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-->
19<project>
Clement Escoffier6ed6c4e2008-08-11 09:55:34 +000020 <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 Escoffiere6a71552008-08-08 08:01:01 +000026 <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 Escoffiere6a71552008-08-08 08:01:01 +000030 <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 Escoffiere6a71552008-08-08 08:01:01 +000060 <extensions>true</extensions>
Clement Escoffier6ed6c4e2008-08-11 09:55:34 +000061 <version>1.4.2</version>
Clement Escoffiere6a71552008-08-08 08:01:01 +000062 <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>
Clement Escoffier06c1d312008-08-13 14:14:55 +000073 <Bundle-Description>
74 iPOJO JMX Handler
75 </Bundle-Description>
76 <Bundle-DocURL>
77 http://felix.apache.org/site/ipojo-jmx-handler.html
78 </Bundle-DocURL>
Clement Escoffiere6a71552008-08-08 08:01:01 +000079 <Include-Resource>
80 META-INF/LICENCE=LICENSE,
81 META-INF/NOTICE=NOTICE
82 </Include-Resource>
83 </instructions>
84 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-compiler-plugin</artifactId>
89 <configuration>
90 <source>1.5</source>
91 <target>1.5</target>
92 </configuration>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-ipojo-plugin</artifactId>
97 <version>0.9.0-SNAPSHOT</version>
98 <executions>
99 <execution>
100 <goals>
101 <goal>ipojo-bundle</goal>
102 </goals>
103 <configuration>
104 <metadata>metadata.xml</metadata>
105 </configuration>
106 </execution>
107 </executions>
108 </plugin>
109 </plugins>
110 </build>
111</project>