[jboss-cvs] JBoss Profiler SVN: r587 - in branches/JBossProfiler2/core/src: etc and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Nov 27 11:10:23 EST 2010


Author: jesper.pedersen
Date: 2010-11-27 11:10:22 -0500 (Sat, 27 Nov 2010)
New Revision: 587

Added:
   branches/JBossProfiler2/core/src/main/resources/agent-manifest.mf
   branches/JBossProfiler2/core/src/main/resources/connectors-manifest.mf
   branches/JBossProfiler2/core/src/main/resources/embedded-manifest.mf
   branches/JBossProfiler2/core/src/main/resources/jboss-profiler.properties
   branches/JBossProfiler2/core/src/main/resources/jboss-service.xml
   branches/JBossProfiler2/core/src/resources/
Removed:
   branches/JBossProfiler2/core/src/etc/agent-manifest.mf
   branches/JBossProfiler2/core/src/etc/connectors-manifest.mf
   branches/JBossProfiler2/core/src/etc/embedded-manifest.mf
   branches/JBossProfiler2/core/src/etc/jboss-profiler.properties
   branches/JBossProfiler2/core/src/etc/jboss-service.xml
   branches/JBossProfiler2/core/src/native/
Log:
[JBPROFILER-113] Split source into modules - not complete

Deleted: branches/JBossProfiler2/core/src/etc/agent-manifest.mf
===================================================================
--- branches/JBossProfiler2/core/src/etc/agent-manifest.mf	2010-11-27 16:05:20 UTC (rev 586)
+++ branches/JBossProfiler2/core/src/etc/agent-manifest.mf	2010-11-27 16:10:22 UTC (rev 587)
@@ -1,7 +0,0 @@
-Manifest-Version: 1.0
-Premain-Class: org.jboss.profiler.agent.Agent
-Agent-Class: org.jboss.profiler.agent.Agent
-Boot-Class-Path: jboss-profiler.jar jboss-profiler-connectors.jar jboss-profiler-plugins.jar javassist.jar ../lib/javassist.jar jboss-remoting.jar jboss-common.jar concurrent.jar log4j.jar
-Can-Redefine-Classes: true
-Can-Retransform-Classes: false
-Can-Set-Native-Method-Prefix: false

Deleted: branches/JBossProfiler2/core/src/etc/connectors-manifest.mf
===================================================================
--- branches/JBossProfiler2/core/src/etc/connectors-manifest.mf	2010-11-27 16:05:20 UTC (rev 586)
+++ branches/JBossProfiler2/core/src/etc/connectors-manifest.mf	2010-11-27 16:10:22 UTC (rev 587)
@@ -1 +0,0 @@
-Manifest-Version: 1.0

Deleted: branches/JBossProfiler2/core/src/etc/embedded-manifest.mf
===================================================================
--- branches/JBossProfiler2/core/src/etc/embedded-manifest.mf	2010-11-27 16:05:20 UTC (rev 586)
+++ branches/JBossProfiler2/core/src/etc/embedded-manifest.mf	2010-11-27 16:10:22 UTC (rev 587)
@@ -1,7 +0,0 @@
-Manifest-Version: 1.0
-Premain-Class: org.jboss.profiler.agent.Agent
-Agent-Class: org.jboss.profiler.agent.Agent
-Boot-Class-Path: jboss-profiler-embedded.jar jboss-profiler-plugins.jar javassist.jar ../lib/javassist.jar log4j.jar
-Can-Redefine-Classes: true
-Can-Retransform-Classes: false
-Can-Set-Native-Method-Prefix: false

Deleted: branches/JBossProfiler2/core/src/etc/jboss-profiler.properties
===================================================================
--- branches/JBossProfiler2/core/src/etc/jboss-profiler.properties	2010-11-27 16:05:20 UTC (rev 586)
+++ branches/JBossProfiler2/core/src/etc/jboss-profiler.properties	2010-11-27 16:10:22 UTC (rev 587)
@@ -1,24 +0,0 @@
-enable=yes
-precompiled=no
-cpu=yes
-memory=yes
-includes=org.jboss.profiler.*
-excludes=*
-visibility=private
-save=yes
-savelocation=.
-startup=yes
-repository=no
-remote=yes
-store=memory
-location=.
-host=localhost
-port=5400
-ejb=yes
-servlet=yes
-jsf=yes
-jmx=yes
-rmi=yes
-corba=yes
-plugin.1=org.jboss.profiler.plugins.Hibernate
-plugin.2=org.jboss.profiler.plugins.Seam

Deleted: branches/JBossProfiler2/core/src/etc/jboss-service.xml
===================================================================
--- branches/JBossProfiler2/core/src/etc/jboss-service.xml	2010-11-27 16:05:20 UTC (rev 586)
+++ branches/JBossProfiler2/core/src/etc/jboss-service.xml	2010-11-27 16:10:22 UTC (rev 587)
@@ -1,42 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- ===================================================================== -->
-<!--                                                                       -->
-<!--  JBoss Profiler                                                       -->
-<!--                                                                       -->
-<!-- ===================================================================== -->
-
-<server>
-
-  <!-- JBoss Profiler: Profiler -->
-  <mbean code="org.jboss.profiler.as.Profiler"
-         name="org.jboss.profiler:service=Profiler">
-
-  </mbean>
-
-  <!-- JBoss Profiler: Communicator -->
-  <mbean code="org.jboss.profiler.as.Communicator"
-         name="org.jboss.profiler:service=Communicator">
-
-    <!-- Socket -->
-    <attribute name="Socket">true</attribute>
-
-    <!-- The socket port -->
-    <attribute name="SocketPort">5400</attribute>
-
-    <!-- RMI -->
-    <attribute name="Rmi">false</attribute>
-
-    <!-- The RMI port -->
-    <attribute name="RmiPort">5401</attribute>
-
-    <!-- HTTP -->
-    <attribute name="Http">false</attribute>
-
-    <!-- The HTTP port -->
-    <attribute name="HttpPort">5402</attribute>
-
-  </mbean>
-
-</server>
-

Copied: branches/JBossProfiler2/core/src/main/resources/agent-manifest.mf (from rev 586, branches/JBossProfiler2/core/src/etc/agent-manifest.mf)
===================================================================
--- branches/JBossProfiler2/core/src/main/resources/agent-manifest.mf	                        (rev 0)
+++ branches/JBossProfiler2/core/src/main/resources/agent-manifest.mf	2010-11-27 16:10:22 UTC (rev 587)
@@ -0,0 +1,7 @@
+Manifest-Version: 1.0
+Premain-Class: org.jboss.profiler.agent.Agent
+Agent-Class: org.jboss.profiler.agent.Agent
+Boot-Class-Path: jboss-profiler.jar jboss-profiler-connectors.jar jboss-profiler-plugins.jar javassist.jar ../lib/javassist.jar jboss-remoting.jar jboss-common.jar concurrent.jar log4j.jar
+Can-Redefine-Classes: true
+Can-Retransform-Classes: false
+Can-Set-Native-Method-Prefix: false

Copied: branches/JBossProfiler2/core/src/main/resources/connectors-manifest.mf (from rev 586, branches/JBossProfiler2/core/src/etc/connectors-manifest.mf)
===================================================================
--- branches/JBossProfiler2/core/src/main/resources/connectors-manifest.mf	                        (rev 0)
+++ branches/JBossProfiler2/core/src/main/resources/connectors-manifest.mf	2010-11-27 16:10:22 UTC (rev 587)
@@ -0,0 +1 @@
+Manifest-Version: 1.0

Copied: branches/JBossProfiler2/core/src/main/resources/embedded-manifest.mf (from rev 586, branches/JBossProfiler2/core/src/etc/embedded-manifest.mf)
===================================================================
--- branches/JBossProfiler2/core/src/main/resources/embedded-manifest.mf	                        (rev 0)
+++ branches/JBossProfiler2/core/src/main/resources/embedded-manifest.mf	2010-11-27 16:10:22 UTC (rev 587)
@@ -0,0 +1,7 @@
+Manifest-Version: 1.0
+Premain-Class: org.jboss.profiler.agent.Agent
+Agent-Class: org.jboss.profiler.agent.Agent
+Boot-Class-Path: jboss-profiler-embedded.jar jboss-profiler-plugins.jar javassist.jar ../lib/javassist.jar log4j.jar
+Can-Redefine-Classes: true
+Can-Retransform-Classes: false
+Can-Set-Native-Method-Prefix: false

Copied: branches/JBossProfiler2/core/src/main/resources/jboss-profiler.properties (from rev 586, branches/JBossProfiler2/core/src/etc/jboss-profiler.properties)
===================================================================
--- branches/JBossProfiler2/core/src/main/resources/jboss-profiler.properties	                        (rev 0)
+++ branches/JBossProfiler2/core/src/main/resources/jboss-profiler.properties	2010-11-27 16:10:22 UTC (rev 587)
@@ -0,0 +1,24 @@
+enable=yes
+precompiled=no
+cpu=yes
+memory=yes
+includes=org.jboss.profiler.*
+excludes=*
+visibility=private
+save=yes
+savelocation=.
+startup=yes
+repository=no
+remote=yes
+store=memory
+location=.
+host=localhost
+port=5400
+ejb=yes
+servlet=yes
+jsf=yes
+jmx=yes
+rmi=yes
+corba=yes
+plugin.1=org.jboss.profiler.plugins.Hibernate
+plugin.2=org.jboss.profiler.plugins.Seam

Copied: branches/JBossProfiler2/core/src/main/resources/jboss-service.xml (from rev 586, branches/JBossProfiler2/core/src/etc/jboss-service.xml)
===================================================================
--- branches/JBossProfiler2/core/src/main/resources/jboss-service.xml	                        (rev 0)
+++ branches/JBossProfiler2/core/src/main/resources/jboss-service.xml	2010-11-27 16:10:22 UTC (rev 587)
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ===================================================================== -->
+<!--                                                                       -->
+<!--  JBoss Profiler                                                       -->
+<!--                                                                       -->
+<!-- ===================================================================== -->
+
+<server>
+
+  <!-- JBoss Profiler: Profiler -->
+  <mbean code="org.jboss.profiler.as.Profiler"
+         name="org.jboss.profiler:service=Profiler">
+
+  </mbean>
+
+  <!-- JBoss Profiler: Communicator -->
+  <mbean code="org.jboss.profiler.as.Communicator"
+         name="org.jboss.profiler:service=Communicator">
+
+    <!-- Socket -->
+    <attribute name="Socket">true</attribute>
+
+    <!-- The socket port -->
+    <attribute name="SocketPort">5400</attribute>
+
+    <!-- RMI -->
+    <attribute name="Rmi">false</attribute>
+
+    <!-- The RMI port -->
+    <attribute name="RmiPort">5401</attribute>
+
+    <!-- HTTP -->
+    <attribute name="Http">false</attribute>
+
+    <!-- The HTTP port -->
+    <attribute name="HttpPort">5402</attribute>
+
+  </mbean>
+
+</server>
+



More information about the jboss-cvs-commits mailing list