Author: atk
Date: Thu Dec 3 09:06:54 2009
New Revision: 886714
URL: http://svn.apache.org/viewvc?rev=886714&view=rev
Log:
ARIES-31 ARIES-35 Implement BundleState and ServiceState MBeans
Added:
incubator/aries/trunk/jmx/jmx-core/pom.xml (with props)
Added: incubator/aries/trunk/jmx/jmx-core/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/aries/trunk/jmx/jmx-core/pom.xml?rev=886714&view=auto
==============================================================================
--- incubator/aries/trunk/jmx/jmx-core/pom.xml (added)
+++ incubator/aries/trunk/jmx/jmx-core/pom.xml Thu Dec 3 09:06:54 2009
@@ -0,0 +1,96 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.aries.jmx</groupId>
+ <artifactId>jmx</artifactId>
+ <version>1.0.0-incubating-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>aries-jmx-core</artifactId>
+ <packaging>bundle</packaging>
+ <name>Apache Aries JMX Core</name>
+ <description>
+ This bundle contains the core implementation
+ of the JMX Control specification
+ </description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.aries.jmx</groupId>
+ <artifactId>aries-jmx-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.compendium</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-all</artifactId>
+ <version>1.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+
<Bundle-SymbolicName>${pom.groupId}.core</Bundle-SymbolicName>
+
<Bundle-Activator>org.apache.aries.jmx.Activator</Bundle-Activator>
+ <Import-Package>
+ !org.apache.aries.jmx*,
+
org.osgi.framework;version="1.5.0",
+
org.osgi.service.cm;version="1.3.0";resolution:="optional",
+
org.osgi.service.permissionadmin;version="1.2.0";resolution:="optional",
+
org.osgi.service.provisioning;version="1.2.0";resolution:="optional",
+
org.osgi.service.useradmin;version="1.1.0";resolution:="optional",
+ org.osgi.util.tracker,
+
org.osgi.jmx;version="1.0.0",
+
org.osgi.jmx.framework;version="1.5.0",
+
org.osgi.jmx.service.cm;version="1.3.0",
+
org.osgi.jmx.service.permissionadmin;version="1.2.0",
+
org.osgi.jmx.service.provisioning;version="1.2.0",
+
org.osgi.jmx.service.useradmin;version="1.1.0",
+ *
+ </Import-Package>
+ <!-- Not currently exporting
anything -->
+ <Export-Package>
+ !*
+ </Export-Package>
+
<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
+
<_removeheaders>Ignore-Package,Include-Resource,Private-Package,Bundle-DocURL</_removeheaders>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Propchange: incubator/aries/trunk/jmx/jmx-core/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native