blob: 8daaa3157fa01de31f23974b9fa8ba532de32dd6 [file] [log] [blame]
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +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-->
Stephane Frenotcb0356f2006-07-20 09:36:47 +000019<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +000020
Stephane Frenotcb0356f2006-07-20 09:36:47 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +000024 <version>1.0.1</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000025 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000026 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +000027
Stephane Frenotcb0356f2006-07-20 09:36:47 +000028 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000029 <packaging>bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000030 <name>Apache Felix MOSGi JMX httpconnector</name>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000031 <artifactId>org.apache.felix.mosgi.jmx.httpconnector</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000032 <version>0.9.0-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000033
Stephane Frenotcb0356f2006-07-20 09:36:47 +000034 <dependencies>
35 <dependency>
36 <groupId>${pom.groupId}</groupId>
37 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000038 <version>1.1.0-SNAPSHOT</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000039 <scope>provided</scope>
40 </dependency>
41 <dependency>
42 <groupId>${pom.groupId}</groupId>
43 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000044 <version>0.9.0-SNAPSHOT</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000045 <scope>provided</scope>
46 </dependency>
47 <dependency>
48 <groupId>${pom.groupId}</groupId>
49 <artifactId>org.apache.felix.framework</artifactId>
Carsten Ziegelerfa25b9e2007-09-26 08:12:09 +000050 <version>1.0.0</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000051 <scope>provided</scope>
52 </dependency>
53 <dependency>
54 <groupId>${pom.groupId}</groupId>
55 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000056 <version>0.9.0-SNAPSHOT</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000057 <scope>provided</scope>
58 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000059 <dependency>
60 <groupId>mx4j</groupId>
61 <artifactId>mx4j-jmx</artifactId>
62 <version>3.0.1</version>
63 <scope>provided</scope>
64 </dependency>
65
Stephane Frenotcb0356f2006-07-20 09:36:47 +000066 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000067
Stephane Frenotcb0356f2006-07-20 09:36:47 +000068 <build>
69 <plugins>
70 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000071 <groupId>org.apache.felix</groupId>
72 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000073 <version>1.1.0-SNAPSHOT</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000074 <extensions>true</extensions>
75 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000076 <instructions>
77 <Bundle-Name>MOSGi JMX-MX4J http connector</Bundle-Name>
78 <Bundle-Description>MOSGi JMX-MX4J http connector</Bundle-Description>
79 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
80 <Bundle-Activator>org.apache.felix.mosgi.jmx.httpconnector.HttpConnectorActivator</Bundle-Activator>
81 <Private-Package>${pom.artifactId}.*</Private-Package>
82 </instructions>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000083 </configuration>
84 </plugin>
85 </plugins>
86 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000087
Stephane Frenotcb0356f2006-07-20 09:36:47 +000088</project>