[jboss-osgi-commits] JBoss-OSGI SVN: r93571 - in projects/jboss-osgi/trunk: reactor and 2 other directories.

jboss-osgi-commits at lists.jboss.org jboss-osgi-commits at lists.jboss.org
Tue Sep 15 23:12:07 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-09-15 23:12:03 -0400 (Tue, 15 Sep 2009)
New Revision: 93571

Added:
   projects/jboss-osgi/trunk/reactor/remotejmx/
   projects/jboss-osgi/trunk/reactor/remotejmx/pom.xml
Modified:
   projects/jboss-osgi/trunk/pom.xml
   projects/jboss-osgi/trunk/reactor/pom.xml
   projects/jboss-osgi/trunk/testsuite/pom.xml
Log:
Add JBossOSGi Runtime - JMX Invoker Adaptor Client

Modified: projects/jboss-osgi/trunk/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/pom.xml	2009-09-16 02:36:19 UTC (rev 93570)
+++ projects/jboss-osgi/trunk/pom.xml	2009-09-16 03:12:03 UTC (rev 93571)
@@ -264,15 +264,11 @@
           <name>!target.container</name>
         </property>
       </activation>
-      <properties>
-        <surefire.argline.parent>-Djava.security.manager.disabled</surefire.argline.parent>
-      </properties>
       <build>
         <plugins>
           <plugin>
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
-              <argLine>${surefire.argline.parent}</argLine>
               <systemProperties>
                 <property>
                   <name>java.protocol.handler.pkgs</name>
@@ -316,15 +312,11 @@
           <name>target.container</name>
         </property>
       </activation>
-      <properties>
-        <surefire.argline.parent>-Djava.security.manager -Djava.security.policy=${project.build.directory}/test-classes/tst.policy</surefire.argline.parent>
-      </properties>
       <build>
         <plugins>
           <plugin>
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
-              <argLine>${surefire.argline.parent}</argLine>
               <systemProperties>
                 <property>
                   <name>java.protocol.handler.pkgs</name>

Modified: projects/jboss-osgi/trunk/reactor/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/reactor/pom.xml	2009-09-16 02:36:19 UTC (rev 93570)
+++ projects/jboss-osgi/trunk/reactor/pom.xml	2009-09-16 03:12:03 UTC (rev 93571)
@@ -43,6 +43,7 @@
 
   <modules>
     <module>blueprint</module>
+    <module>remotejmx</module>
   </modules>
 
 </project>

Added: projects/jboss-osgi/trunk/reactor/remotejmx/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/reactor/remotejmx/pom.xml	                        (rev 0)
+++ projects/jboss-osgi/trunk/reactor/remotejmx/pom.xml	2009-09-16 03:12:03 UTC (rev 93571)
@@ -0,0 +1,340 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+  <!-- ====================================================================== -->
+  <!--                                                                        -->
+  <!--  JBoss, the OpenSource J2EE webOS                                      -->
+  <!--                                                                        -->
+  <!--  Distributable under LGPL license.                                     -->
+  <!--  See terms of license at http://www.gnu.org.                           -->
+  <!--                                                                        -->
+  <!-- ====================================================================== -->
+
+  <!-- $Id$ -->
+
+<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>
+
+  <name>JBossOSGi Runtime - JMX Invoker Adaptor Client</name>
+
+  <groupId>org.jboss.osgi.runtime</groupId>
+  <artifactId>jmx-invoker-adaptor-client</artifactId>
+  <packaging>pom</packaging>
+
+  <version>5.0.1.GA</version>
+
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss.osgi</groupId>
+    <artifactId>jboss-osgi-parent</artifactId>
+    <version>1.0.2-SNAPSHOT</version>
+  </parent>
+
+  <properties>
+    <version.jbossas.server>5.0.1.GA</version.jbossas.server>
+    <version.jbossas.integration>5.0.1.GA</version.jbossas.integration>
+    <version.jboss.transaction.api>1.0.1.GA</version.jboss.transaction.api>
+    <version.jboss.security.spi>2.0.2.SP6</version.jboss.security.spi>
+  </properties>
+
+  <!-- Dependencies -->
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.integration</groupId>
+      <artifactId>jboss-integration</artifactId>
+      <version>${version.jbossas.integration}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.javaee</groupId>
+      <artifactId>jboss-transaction-api</artifactId>
+      <version>${version.jboss.transaction.api}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.security</groupId>
+      <artifactId>jboss-security-spi</artifactId>
+      <version>${version.jboss.security.spi}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.jbossas</groupId>
+      <artifactId>jboss-as-server</artifactId>
+      <classifier>jmx-invoker-adaptor-client</classifier>
+      <version>${version.jbossas.server}</version>
+      <exclusions>
+        <!-- 
+        <exclusion>
+          <groupId>jboss</groupId>
+          <artifactId>jboss-serialization</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.remoting</groupId>
+          <artifactId>jboss-remoting</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.naming</groupId>
+          <artifactId>jnp-client</artifactId>
+        </exclusion>
+        -->
+        <exclusion>
+          <groupId>sun-jaxb</groupId>
+          <artifactId>jaxb-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-deployment</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-bootstrap</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.integration</groupId>
+          <artifactId>jboss-deployment-spi</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jpa</groupId>
+          <artifactId>jboss-jpa-deployers</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.security</groupId>
+          <artifactId>jbosssx</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss</groupId>
+          <artifactId>jboss-common-core</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.metadata</groupId>
+          <artifactId>jboss-metadata</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-system-jmx</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-system</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.javaee</groupId>
+          <artifactId>jboss-ejb-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-j2se</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-security</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.integration</groupId>
+          <artifactId>jboss-transaction-spi</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.javaee</groupId>
+          <artifactId>jboss-jacc-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.hibernate</groupId>
+          <artifactId>ejb3-persistence</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.javaee</groupId>
+          <artifactId>jboss-jms-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.ws.native</groupId>
+          <artifactId>jbossws-native-saaj</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.ws.native</groupId>
+          <artifactId>jbossws-native-jaxws</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.security</groupId>
+          <artifactId>jaas</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.javaee</groupId>
+          <artifactId>jboss-jca-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.security</groupId>
+          <artifactId>jbosssx-client</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>bcel</groupId>
+          <artifactId>bcel</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>oswego-concurrent</groupId>
+          <artifactId>concurrent</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>jpl-util</groupId>
+          <artifactId>jpl-util</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>jpl-pattern</groupId>
+          <artifactId>jpl-pattern</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss</groupId>
+          <artifactId>jbossxb</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.naming</groupId>
+          <artifactId>jnpserver</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>gnu-getopt</groupId>
+          <artifactId>getopt</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.jbossas</groupId>
+      <artifactId>jboss-as-server</artifactId>
+      <classifier>client</classifier>
+      <version>${version.jbossas.server}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>jboss</groupId>
+          <artifactId>jboss-serialization</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>sun-jaxb</groupId>
+          <artifactId>jaxb-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-deployment</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-bootstrap</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.integration</groupId>
+          <artifactId>jboss-deployment-spi</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jpa</groupId>
+          <artifactId>jboss-jpa-deployers</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.security</groupId>
+          <artifactId>jbosssx</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss</groupId>
+          <artifactId>jboss-common-core</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.metadata</groupId>
+          <artifactId>jboss-metadata</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-system-jmx</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-system</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.javaee</groupId>
+          <artifactId>jboss-ejb-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-j2se</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-security</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.integration</groupId>
+          <artifactId>jboss-transaction-spi</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.javaee</groupId>
+          <artifactId>jboss-jacc-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.hibernate</groupId>
+          <artifactId>ejb3-persistence</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.javaee</groupId>
+          <artifactId>jboss-jms-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.ws.native</groupId>
+          <artifactId>jbossws-native-saaj</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.ws.native</groupId>
+          <artifactId>jbossws-native-jaxws</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.naming</groupId>
+          <artifactId>jnp-client</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.security</groupId>
+          <artifactId>jaas</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.javaee</groupId>
+          <artifactId>jboss-jca-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.security</groupId>
+          <artifactId>jbosssx-client</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>bcel</groupId>
+          <artifactId>bcel</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>oswego-concurrent</groupId>
+          <artifactId>concurrent</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.remoting</groupId>
+          <artifactId>jboss-remoting</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>jpl-util</groupId>
+          <artifactId>jpl-util</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>jpl-pattern</groupId>
+          <artifactId>jpl-pattern</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss</groupId>
+          <artifactId>jbossxb</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.jboss.naming</groupId>
+          <artifactId>jnpserver</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>gnu-getopt</groupId>
+          <artifactId>getopt</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+
+</project>


Property changes on: projects/jboss-osgi/trunk/reactor/remotejmx/pom.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Modified: projects/jboss-osgi/trunk/testsuite/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/testsuite/pom.xml	2009-09-16 02:36:19 UTC (rev 93570)
+++ projects/jboss-osgi/trunk/testsuite/pom.xml	2009-09-16 03:12:03 UTC (rev 93571)
@@ -34,7 +34,7 @@
 
   <!-- Properties -->
   <properties>
-    <version.jboss.naming>5.0.1.GA</version.jboss.naming>
+    <version.jmx.invoker.adaptor.client>5.0.1.GA</version.jmx.invoker.adaptor.client>
   </properties>
 
   <!-- Dependencies -->
@@ -137,18 +137,6 @@
 
     <!-- Test Dependencies -->
     <dependency>
-      <groupId>org.jboss.naming</groupId>
-      <artifactId>jnpserver</artifactId>
-      <version>${version.jboss.naming}</version>
-      <scope>test</scope>
-      <exclusions>
-        <exclusion>
-          <groupId>org.jboss</groupId>
-          <artifactId>jboss-common-core</artifactId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-    <dependency>
       <groupId>org.jboss.logging</groupId>
       <artifactId>jboss-logging-log4j</artifactId>
       <scope>test</scope>
@@ -271,7 +259,7 @@
           <plugin>
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
-              <argLine>-Xmx1024m ${surefire.argline.parent}</argLine>
+              <argLine>-Xmx1024m</argLine>
             </configuration>
           </plugin>
         </plugins>
@@ -328,6 +316,14 @@
       <properties>
         <target.container.excludes>org/jboss/test/osgi/nothing-to-exclude</target.container.excludes>
       </properties>
+      <dependencies>
+        <dependency>
+          <groupId>org.jboss.osgi.runtime</groupId>
+          <artifactId>jmx-invoker-adaptor-client</artifactId>
+          <version>${version.jmx.invoker.adaptor.client}</version>
+          <type>pom</type>
+        </dependency>
+      </dependencies>
     </profile>
 
     <!--
@@ -345,6 +341,14 @@
       <properties>
         <target.container.excludes>org/jboss/test/osgi/nothing-to-exclude</target.container.excludes>
       </properties>
+      <dependencies>
+        <dependency>
+          <groupId>org.jboss.osgi.runtime</groupId>
+          <artifactId>jmx-invoker-adaptor-client</artifactId>
+          <version>${version.jmx.invoker.adaptor.client}</version>
+          <type>pom</type>
+        </dependency>
+      </dependencies>
     </profile>
 
     <!--
@@ -362,6 +366,14 @@
       <properties>
         <target.container.excludes>org/jboss/test/osgi/nothing-to-exclude</target.container.excludes>
       </properties>
+      <dependencies>
+        <dependency>
+          <groupId>org.jboss.osgi.runtime</groupId>
+          <artifactId>jmx-invoker-adaptor-client</artifactId>
+          <version>${version.jmx.invoker.adaptor.client}</version>
+          <type>pom</type>
+        </dependency>
+      </dependencies>
     </profile>
 
     <!--
@@ -379,6 +391,14 @@
       <properties>
         <target.container.excludes>org/jboss/test/osgi/nothing-to-exclude</target.container.excludes>
       </properties>
+      <dependencies>
+        <dependency>
+          <groupId>org.jboss.osgi.runtime</groupId>
+          <artifactId>jmx-invoker-adaptor-client</artifactId>
+          <version>${version.jmx.invoker.adaptor.client}</version>
+          <type>pom</type>
+        </dependency>
+      </dependencies>
     </profile>
 
   </profiles>



More information about the jboss-osgi-commits mailing list