[jboss-svn-commits] JBL Code SVN: r12743 - labs/jbossesb/workspace/dbevenius/trunk/product.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Jun 21 10:37:11 EDT 2007


Author: beve
Date: 2007-06-21 10:37:11 -0400 (Thu, 21 Jun 2007)
New Revision: 12743

Modified:
   labs/jbossesb/workspace/dbevenius/trunk/product/Developer.txt
   labs/jbossesb/workspace/dbevenius/trunk/product/build.xml
Log:
Updated build.xml and changed core -> rosetta. Updated Developer.txt to reflect the structure changes.


Modified: labs/jbossesb/workspace/dbevenius/trunk/product/Developer.txt
===================================================================
--- labs/jbossesb/workspace/dbevenius/trunk/product/Developer.txt	2007-06-21 14:12:04 UTC (rev 12742)
+++ labs/jbossesb/workspace/dbevenius/trunk/product/Developer.txt	2007-06-21 14:37:11 UTC (rev 12743)
@@ -1,11 +1,28 @@
 The structure of the distribution is as follows:
 
-lib:			contains the built jar
-lib/ext:		contains any jars needed to build/run the distribution
-core:			the core SOA infrastructure
-jbi:			the JBI implementation which layers on core
-javadocs:		created during the build
-build:			created during the build
+|-build						created during the build
+|---jbossesb/lib			contains the built jar
+|-docs						Project documentation, guide
+|-etc						Schemas 
+|-install					deployment and installation
+|-javadocs					JavaDocs
+|-lib						
+|---ext						contains any jars needed to build/run the distribution
+|-plugins
+|-rosetta					the core SOA infrastructure
+|-samples					Quickstarts and trailblazer
+|-services					services to the ESB, like Smooks, JBossRules etc.
+|---jbossesb
+|---jbpm					jBPM (Business Process Manager)
+|---jbrules					JBoss Rules (Content Based Routing)
+|---smooks					Smooks (tranformation)
+|---soap					SOAP
+|---soapui-client
+|---spring					Spring
+|-tools
+|---configeditor			
+|---console
 
+
 Any classes which occur within an 'internal' package are not meant for users. Changes to these
 classes can occur without notice and deprecation markers.

Modified: labs/jbossesb/workspace/dbevenius/trunk/product/build.xml
===================================================================
--- labs/jbossesb/workspace/dbevenius/trunk/product/build.xml	2007-06-21 14:12:04 UTC (rev 12742)
+++ labs/jbossesb/workspace/dbevenius/trunk/product/build.xml	2007-06-21 14:37:11 UTC (rev 12743)
@@ -72,7 +72,7 @@
 	</condition>
 	
 	<!-- Path names -->
-	<property name="org.jboss.esb.internal.core" value="esb"/>
+	<property name="org.jboss.esb.internal.rosetta" value="esb"/>
 	<property name="org.jboss.esb.internal.dest" location="build"/>
 	<property name="org.jboss.esb.internal.jar" location="lib"/>
 	<property name="org.jboss.esb.internal.javadocs.dest" location="javadocs"/>
@@ -114,12 +114,12 @@
 	<!-- Compilation targets -->
 		
 	<target name="org.jboss.esb.compile"
-		depends="org.jboss.esb.internal.init, org.jboss.esb.core.compile"/>
+		depends="org.jboss.esb.internal.init, org.jboss.esb.rosetta.compile"/>
 	
-	<target name="org.jboss.esb.jar" depends="org.jboss.esb.internal.init, org.jboss.esb.core.jar,
+	<target name="org.jboss.esb.jar" depends="org.jboss.esb.internal.init, org.jboss.esb.rosetta.jar,
 		org.jboss.soa.esb.services.jar"/>	
 
-	<target name="org.jboss.esb.core.compile" depends="org.jboss.esb.internal.init">
+	<target name="org.jboss.esb.rosetta.compile" depends="org.jboss.esb.internal.init">
 		<echo message="Compiling modules"/>
 		<ant dir="rosetta"/>
 	</target>
@@ -174,7 +174,7 @@
 	value="org.jboss.soa.esb.samples.*"/>
 
 	<!-- Jar targets -->
-	<target name="org.jboss.esb.core.jar">
+	<target name="org.jboss.esb.rosetta.jar">
 		<echo message="Building jar file"/>
 		<ant dir="rosetta" target="jar"/>
 	</target>
@@ -380,7 +380,7 @@
 	<target name="org.jboss.esb.clean">
 		<echo message="Cleaning modules"/>
 		
-		<echo message="Cleaning core"/>
+		<echo message="Cleaning rosetta"/>
 		<ant dir="rosetta" target="clean"/>
 		<ant dir="${console.dir}" target="clean"/>
         <ant dir="services" target="clean"/>




More information about the jboss-svn-commits mailing list