[jboss-svn-commits] JBL Code SVN: r5137 - labs/jbossesb/branches/refactor

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Jul 18 12:57:54 EDT 2006


Author: arvinder
Date: 2006-07-18 12:57:47 -0400 (Tue, 18 Jul 2006)
New Revision: 5137

Removed:
   labs/jbossesb/branches/refactor/Build.txt
   labs/jbossesb/branches/refactor/Copyright.txt
   labs/jbossesb/branches/refactor/Developer.txt
   labs/jbossesb/branches/refactor/ESBCore/
   labs/jbossesb/branches/refactor/JBI/
   labs/jbossesb/branches/refactor/Readme.txt
   labs/jbossesb/branches/refactor/build.xml
   labs/jbossesb/branches/refactor/docs/
   labs/jbossesb/branches/refactor/lib/
   labs/jbossesb/branches/refactor/product.properties
   labs/jbossesb/branches/refactor/xml/
Log:
Re-branch in progress from clean trunk

Deleted: labs/jbossesb/branches/refactor/Build.txt
===================================================================
--- labs/jbossesb/branches/refactor/Build.txt	2006-07-18 13:46:20 UTC (rev 5136)
+++ labs/jbossesb/branches/refactor/Build.txt	2006-07-18 16:57:47 UTC (rev 5137)
@@ -1,5 +0,0 @@
-Use the root build.xml in conjuntion with product.properties, where various properties used
-in the build can be set for convenience. The lib/ext directory contains the most recently tested
-libs needed to build the system. You are free to use these, or your own versions of the jars
-from a JBossAS 4.0.3SP1 installation. If the latter, then set org.jboss.esb.frominstall to true
-and org.jboss.esb.jboss.home to the root of your JBossAS installation.
\ No newline at end of file

Deleted: labs/jbossesb/branches/refactor/Copyright.txt
===================================================================
--- labs/jbossesb/branches/refactor/Copyright.txt	2006-07-18 13:46:20 UTC (rev 5136)
+++ labs/jbossesb/branches/refactor/Copyright.txt	2006-07-18 16:57:47 UTC (rev 5137)
@@ -1,19 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2006, JBoss Inc., and others contributors as indicated 
- * by the @authors tag. All rights reserved. 
- * See the copyright.txt in the distribution for a
- * full listing of individual contributors. 
- * This copyrighted material is made available to anyone wishing to use,
- * modify, copy, or redistribute it subject to the terms and conditions
- * of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A 
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
- * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License,
- * v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
- * MA  02110-1301, USA.
- * 
- * (C) 2005-2006,
- */
\ No newline at end of file

Deleted: labs/jbossesb/branches/refactor/Developer.txt
===================================================================
--- labs/jbossesb/branches/refactor/Developer.txt	2006-07-18 13:46:20 UTC (rev 5136)
+++ labs/jbossesb/branches/refactor/Developer.txt	2006-07-18 16:57:47 UTC (rev 5137)
@@ -1,13 +0,0 @@
-WARNING: this will be updated soon and refers to the old structure.
-
-The structure of the distribution is as follows:
-
-lib:			contains the built jar
-lib/ext:		contains any jars needed to build/run the distribution
-ESBCore:		the core SOA infrastructure
-JBI:			the JBI implementation which layers on ESBCore
-javadocs:	created during the build
-build:		created during the build
-
-Any classes which occur within an 'internal' package are not meant for users. Changes to these
-classes can occur without notice and deprecation markers.

Deleted: labs/jbossesb/branches/refactor/Readme.txt
===================================================================
--- labs/jbossesb/branches/refactor/Readme.txt	2006-07-18 13:46:20 UTC (rev 5136)
+++ labs/jbossesb/branches/refactor/Readme.txt	2006-07-18 16:57:47 UTC (rev 5137)
@@ -1,4 +0,0 @@
-This is the source code repository for JBossESB. This is a work in progress, so the structure may change.
-
-For more information on JBossESB, visit http://labs.jboss.com/portal/jbossesb/?prjlist=false
-

Deleted: labs/jbossesb/branches/refactor/build.xml
===================================================================
--- labs/jbossesb/branches/refactor/build.xml	2006-07-18 13:46:20 UTC (rev 5136)
+++ labs/jbossesb/branches/refactor/build.xml	2006-07-18 16:57:47 UTC (rev 5137)
@@ -1,179 +0,0 @@
-<project name="JBESB" default="org.jboss.esb.compile" basedir=".">
-	<!-- class path behaviour -->
-	<property name="build.sysclasspath" value="last"/>
-
-	<!-- Set module name -->
-	<property name="org.jboss.esb.internal.modulename" value="jbesb"/>
-
-	<property name="org.jboss.esb.jboss.home" value="."/>
-	
-	<!-- Product properties file -->
-	<property name="org.jboss.esb.product.properties" value="jbossesb-properties.xml"/>
-	
-	<!-- Set default properties filename -->
-	<property name="org.jboss.esb.properties" value="product.properties"/>
-
-	<!-- Load Build Properties File -->
-	<property file="${org.jboss.esb.properties}"/>
-
-	<!-- Set internal property defaults -->
-
-	<property name="org.jboss.esb.installationdirectory" value="${basedir}/build/install"/>
-	
-	<!-- Compile with debugging? -->
-	<property name="org.jboss.esb.debug" value="yes"/>
-	<condition property="org.jboss.esb.debug" value="no">
-		<equals arg1="${org.jboss.esb.debug}" arg2="no"/>
-	</condition>
-
-	<!-- Compile with deprecation? -->
-	<property name="org.jboss.esb.deprecation" value="no"/>
-	<condition property="org.jboss.esb.deprecation" value="yes">
-		<equals arg1="${org.jboss.esb.deprecation}" arg2="yes"/>
-	</condition>
-	
-	<!-- Compile with optimization? -->
-	<property name="org.jboss.esb.optimize" value="on"/>
-	<condition property="org.jboss.esb.optimize" value="off">
-		<equals arg1="${org.jboss.esb.optimize}" arg2="off"/>
-	</condition>
-	
-	<!-- Build from local libs? -->
-	<property name="org.jboss.esb.frominstall" value="no"/>
-	<condition property="org.jboss.esb.frominstall" value="yes">
-		<equals arg1="${org.jboss.esb.frominstall}" arg2="yes"/>
-	</condition>
-	
-	<!-- Build tests? -->
-	<property name="org.jboss.esb.buildtests" value="no"/>
-	<condition property="org.jboss.esb.buildtests" value="yes">
-		<equals arg1="${org.jboss.esb.buildtests}" arg2="yes"/>
-	</condition>
-	
-	<!-- Path names -->
-	<property name="org.jboss.esb.internal.core" value="ESBCore"/>
-	<property name="org.jboss.esb.internal.dest" value="${basedir}/build"/>
-	<property name="org.jboss.esb.internal.jar.dest" value="${basedir}/lib"/>
-	<property name="org.jboss.esb.internal.javadocs.dest" value="javadocs"/>
-
-	<!-- Initialisation -->
-	<target name="org.jboss.esb.internal.init">
-		<!-- Define default build properties -->
-		<tstamp>
-			<format property="org.jboss.esb.date" pattern="yyyy/mm/dd hh:mm aa"/>
-		</tstamp>
-		<!-- Make the destination directory -->
-		<mkdir dir="${org.jboss.esb.internal.dest}"/>
-	</target>
-
-	<!-- Compilation targets -->
-		
-	<target name="org.jboss.esb.compile"
-		depends="org.jboss.esb.internal.init, org.jboss.esb.core.compile"/>
-	
-	<target name="org.jboss.esb.jar" depends="org.jboss.esb.internal.init, org.jboss.esb.core.jar"/>	
-
-	<target name="org.jboss.esb.core.compile" depends="org.jboss.esb.internal.init">
-		<echo message="Compiling modules"/>
-		<ant dir="ESBCore"/>
-	</target>
-
-    <!-- Test targets -->
-    <target name="org.jboss.esb.test" depends="org.jboss.esb.compile">
-        <echo message="Testing modules"/>
-        <ant dir="ESBCore" target="org.jboss.esb.core.test"/>
-    </target>
-
-
-
-    <!-- javadocs paths -->
-	<path id="org.jboss.esb.javadocs.path">
-		<pathelement path="ESBCore/classes"/>
-	</path>
-
-	<property name="org.jboss.esb.javadocs.list"
-	value="org.jboss.soa.*"/>
-
-	<!-- Jar targets -->
-	<target name="org.jboss.esb.core.jar" depends="org.jboss.esb.compile">
-		<echo message="Building jar file"/>
-		<ant dir="ESBCore" target="jar"/>
-		<mkdir dir="${org.jboss.esb.internal.jar.dest}"/>
-	</target>
-
-	<target name="org.jboss.esb.javadocs"
-				depends="org.jboss.esb.internal.init">
-		<echo message="Building javadocs "/>
-		<mkdir dir="${org.jboss.esb.internal.javadocs.dest}"/>
-		<path id="org.jboss.esb.internal.javadocs.path">
-			<path refid="org.jboss.esb.javadocs.path"/>
-		</path>
-
-		<javadoc
-			sourcepathref="org.jboss.esb.internal.javadocs.path"
-			destdir="${org.jboss.esb.internal.javadocs.dest}"
-			packagenames="${org.jboss.esb.javadocs.list}"
-	        >
-			<classpath>
-				<path path="${org.jboss.esb.internal.src}"/>
-			</classpath>
-		</javadoc>
-	</target>
-
-	<target name="install" depends="org.jboss.esb.jar">
-
-		<echo message="Installation directory : ${org.jboss.esb.installationdirectory}"/>
-
-		<echo message="Installing jar files"/>
-		<mkdir dir="${org.jboss.esb.installationdirectory}/lib"/>
-		<copy
-			todir="${org.jboss.esb.installationdirectory}/lib"
-		>
-			<fileset dir="lib">
-				<include name="*.jar"/>
-			</fileset>
-		</copy>
-
-		<echo message="Installing xml"/>
-		<mkdir dir="${org.jboss.esb.installationdirectory}/xml"/>
-		<copy
-			todir="${org.jboss.esb.installationdirectory}/xml"
-		>
-			<fileset dir="xml"/>
-		</copy>
-
-		<echo message="Installing javadocs"/>
-		<mkdir dir="${org.jboss.esb.installationdirectory}/javadocs"/>
-		<copy
-			todir="${org.jboss.esb.installationdirectory}/javadocs"
-		>
-			<fileset dir="javadocs"/>
-		</copy>
-
-	</target>
-
-	<!-- Clean targets -->
-	<target name="org.jboss.esb.clean">
-		<echo message="Cleaning modules"/>
-		
-		<echo message="Cleaning ESBCore"/>
-			<ant dir="ESBCore" target="clean"/>
-	</target>
-		
-	<target name="org.jboss.esb.purge">
-		<echo message="Purging modules"/>
-		
-		<ant dir="ESBCore" target="purge"/>
-		
-		<delete dir="${org.jboss.esb.internal.dest}"/>
-		<delete dir="${org.jboss.esb.internal.dest.root}"/>
-		<delete dir="${org.jboss.esb.internal.javadocs.dest}"/>
-	</target>
-
-	<!-- Short target names -->
-	<target name="compile" depends="org.jboss.esb.compile"/>
-    <target name="test" depends="org.jboss.esb.test"/>
-    <target name="jar" depends="org.jboss.esb.jar"/>
-	<target name="clean" depends="org.jboss.esb.clean"/>
-	<target name="purge" depends="org.jboss.esb.purge"/>
-</project>

Deleted: labs/jbossesb/branches/refactor/product.properties
===================================================================
--- labs/jbossesb/branches/refactor/product.properties	2006-07-18 13:46:20 UTC (rev 5136)
+++ labs/jbossesb/branches/refactor/product.properties	2006-07-18 16:57:47 UTC (rev 5137)
@@ -1,8 +0,0 @@
-# JBossESB ant properties file
-# $Id$
-#
-org.jboss.esb.deprecation=yes
-org.jboss.esb.optimize=off
-org.jboss.esb.alltests.build=yes
-org.jboss.esb.frominstall=no
-org.jboss.esb.jboss.home=.




More information about the jboss-svn-commits mailing list