[jboss-svn-commits] JBL Code SVN: r37381 - labs/jbosstm/trunk/ArjunaCore/scripts.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Aug 11 06:43:11 EDT 2011


Author: tomjenkinson
Date: 2011-08-11 06:43:11 -0400 (Thu, 11 Aug 2011)
New Revision: 37381

Added:
   labs/jbosstm/trunk/ArjunaCore/scripts/jta-setup-env.bat
   labs/jbosstm/trunk/ArjunaCore/scripts/jta-setup-env.sh
   labs/jbosstm/trunk/ArjunaCore/scripts/jts-setup-env.bat
   labs/jbosstm/trunk/ArjunaCore/scripts/jts-setup-env.sh
Removed:
   labs/jbosstm/trunk/ArjunaCore/scripts/withorb-setup-env.bat
   labs/jbosstm/trunk/ArjunaCore/scripts/withorb-setup-env.sh
   labs/jbosstm/trunk/ArjunaCore/scripts/withoutorb-setup-env.bat
   labs/jbosstm/trunk/ArjunaCore/scripts/withoutorb-setup-env.sh
Log:
renamed to be more consistent with the project being initialized

Copied: labs/jbosstm/trunk/ArjunaCore/scripts/jta-setup-env.bat (from rev 37377, labs/jbosstm/trunk/ArjunaCore/scripts/withoutorb-setup-env.bat)
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/scripts/jta-setup-env.bat	                        (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/scripts/jta-setup-env.bat	2011-08-11 10:43:11 UTC (rev 37381)
@@ -0,0 +1,63 @@
+rem
+rem JBoss, Home of Professional Open Source
+rem Copyright 2006, Red Hat Middleware LLC, and individual contributors
+rem as indicated by the @author tags.
+rem See the copyright.txt in the distribution for a
+rem full listing of individual contributors.
+rem This copyrighted material is made available to anyone wishing to use,
+rem modify, copy, or redistribute it subject to the terms and conditions
+rem of the GNU Lesser General Public License, v. 2.1.
+rem This program is distributed in the hope that it will be useful, but WITHOUT A
+rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+rem PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+rem You should have received a copy of the GNU Lesser General Public License,
+rem v.2.1 along with this distribution; if not, write to the Free Software
+rem Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+rem MA  02110-1301, USA.
+rem
+rem (C) 2005-2006,
+rem @author JBoss Inc.
+rem
+ at echo off
+
+rem Arjuna Technologies Ltd.
+rem Copyright 2004
+rem
+
+if "%JAVA_HOME%"=="" goto java_home_error
+
+echo Environment variable JAVA_HOME set to "%JAVA_HOME%"
+
+if "%NARAYANA_HOME%"=="" goto home_error
+
+echo Environment variable NARAYANA_HOME set to "%NARAYANA_HOME%"
+
+rem Setup EXT classpath
+
+echo Setting up environment
+
+set PRODUCT_CLASSPATH=%NARAYANA_HOME%\lib\narayana-jta.jar
+set PRODUCT_CLASSPATH=%PRODUCT_CLASSPATH%;%NARAYANA_HOME%\etc\
+
+set EXT_CLASSPATH=%NARAYANA_HOME%\lib\ext\commons-logging-1.1.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\connector-api.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jmxri.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jndi.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jta-1_1-classes.zip
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\log4j-1.2.14.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\xercesImpl.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\xmlParserAPIs.jar
+
+set CLASSPATH=.;%PRODUCT_CLASSPATH%;%EXT_CLASSPATH%
+
+goto end
+
+:java_home_error
+echo Environment variable JAVA_HOME not set
+goto end
+
+:home_error
+echo Environment variable NARAYANA_HOME not set
+goto end
+
+:end

Copied: labs/jbosstm/trunk/ArjunaCore/scripts/jta-setup-env.sh (from rev 37377, labs/jbosstm/trunk/ArjunaCore/scripts/withoutorb-setup-env.sh)
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/scripts/jta-setup-env.sh	                        (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/scripts/jta-setup-env.sh	2011-08-11 10:43:11 UTC (rev 37381)
@@ -0,0 +1,77 @@
+#
+# JBoss, Home of Professional Open Source
+# Copyright 2006, Red Hat Middleware LLC, and individual contributors
+# as indicated by the @author tags.
+# 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,
+# @author JBoss Inc.
+#
+# Arjuna Technologies Ltd.
+# Copyright 2004
+#
+
+CONTINUE_SETUP=true
+
+if test "x$JAVA_HOME" = "x"
+then
+
+	echo Please ensure the JAVA_HOME environment variable is set
+	CONTINUE_SETUP=false
+
+else
+
+	if test "x$NARAYANA_HOME" = "x"
+	then
+
+		echo Please ensure the NARAYANA_HOME environment variable is set
+		CONTINUE_SETUP=false
+
+	fi
+
+fi
+
+if test "$CONTINUE_SETUP" = "true"
+then
+
+# Find classpath separator
+
+CPS=":"
+
+case `uname -a` in
+    CYGWIN_* | Windows* )
+        CPS=";"
+	NARAYANA_HOME=`echo $NARAYANA_HOME | sed -e 's;\\\;/;g'`
+    ;;
+esac
+
+
+# Setup EXT classpath
+
+echo Setting up environment
+
+PRODUCT_CLASSPATH="$NARAYANA_HOME/lib/narayana-jta.jar"
+PRODUCT_CLASSPATH="$PRODUCT_CLASSPATH$CPS$NARAYANA_HOME/etc/"
+
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/commons-logging-1.1.jar"
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/connector-api.jar"
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jmxri.jar"
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jndi.jar"
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jta-1_1-classes.zip"
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/log4j-1.2.14.jar"
+
+CLASSPATH=".$CPS$PRODUCT_CLASSPATH$CPS$EXT_CLASSPATH"
+export CLASSPATH
+
+fi

Copied: labs/jbosstm/trunk/ArjunaCore/scripts/jts-setup-env.bat (from rev 37377, labs/jbosstm/trunk/ArjunaCore/scripts/withorb-setup-env.bat)
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/scripts/jts-setup-env.bat	                        (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/scripts/jts-setup-env.bat	2011-08-11 10:43:11 UTC (rev 37381)
@@ -0,0 +1,74 @@
+rem
+rem JBoss, Home of Professional Open Source
+rem Copyright 2006, Red Hat Middleware LLC, and individual contributors
+rem as indicated by the @author tags.
+rem See the copyright.txt in the distribution for a
+rem full listing of individual contributors.
+rem This copyrighted material is made available to anyone wishing to use,
+rem modify, copy, or redistribute it subject to the terms and conditions
+rem of the GNU Lesser General Public License, v. 2.1.
+rem This program is distributed in the hope that it will be useful, but WITHOUT A
+rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+rem PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+rem You should have received a copy of the GNU Lesser General Public License,
+rem v.2.1 along with this distribution; if not, write to the Free Software
+rem Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+rem MA  02110-1301, USA.
+rem
+rem (C) 2005-2006,
+rem @author JBoss Inc.
+rem
+ at echo off
+
+rem Arjuna Technologies Ltd.
+rem Copyright 2004
+rem
+
+if "%JAVA_HOME%"=="" goto java_home_error
+
+echo Environment variable JAVA_HOME set to "%JAVA_HOME%"
+
+if "%NARAYANA_HOME%"=="" goto home_error
+
+echo Environment variable NARAYANA_HOME set to "%NARAYANA_HOME%"
+
+rem Setup EXT classpath
+
+echo Setting up environment
+
+set PRODUCT_CLASSPATH=%NARAYANA_HOME%\lib\narayana-jts.jar
+set PRODUCT_CLASSPATH=%PRODUCT_CLASSPATH%;%NARAYANA_HOME%\etc\
+
+set EXT_CLASSPATH=%NARAYANA_HOME%\lib\ext\commons-logging-1.1.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\connector-api.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jmxri.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jndi.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jta-1_1-classes.zip
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\log4j-1.2.14.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\xercesImpl.jar
+set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\xmlParserAPIs.jar
+
+rem
+rem Caution: JBossTS needs a specially patched version of JacORB.
+rem Use %JBOSSTS_HOME%\jacorb here unless you have a good reason not to.
+rem
+set JACORB_HOME=PUT_JACORB_HOME_HERE
+set JACORB_CLASSPATH=%JACORB_HOME%\lib\jacorb.jar
+set JACORB_CLASSPATH=%JACORB_CLASSPATH%;%JACORB_HOME%\lib\idl.jar
+set JACORB_CLASSPATH=%JACORB_CLASSPATH%;%JACORB_HOME%\lib\logkit-1.2.jar
+set JACORB_CLASSPATH=%JACORB_CLASSPATH%;%JACORB_HOME%\lib\avalon-framework-4.1.5.jar
+set JACORB_CLASSPATH=%JACORB_CLASSPATH%;%JACORB_HOME%\etc
+
+set CLASSPATH=.;%PRODUCT_CLASSPATH%;%EXT_CLASSPATH%;%JACORB_CLASSPATH%
+
+goto end
+
+:java_home_error
+echo Environment variable JAVA_HOME not set
+goto end
+
+:home_error
+echo Environment variable NARAYANA_HOME not set
+goto end
+
+:end

Copied: labs/jbosstm/trunk/ArjunaCore/scripts/jts-setup-env.sh (from rev 37377, labs/jbosstm/trunk/ArjunaCore/scripts/withorb-setup-env.sh)
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/scripts/jts-setup-env.sh	                        (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/scripts/jts-setup-env.sh	2011-08-11 10:43:11 UTC (rev 37381)
@@ -0,0 +1,90 @@
+#
+# JBoss, Home of Professional Open Source
+# Copyright 2006, Red Hat Middleware LLC, and individual contributors
+# as indicated by the @author tags.
+# 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,
+# @author JBoss Inc.
+#
+# Arjuna Technologies Ltd.
+# Copyright 2004
+#
+
+CONTINUE_SETUP=true
+
+if test "x$JAVA_HOME" = "x"
+then
+
+	echo Please ensure the JAVA_HOME environment variable is set
+	CONTINUE_SETUP=false
+
+else
+
+	if test "x$NARAYANA_HOME" = "x"
+	then
+
+		echo Please ensure the NARAYANA_HOME environment variable is set
+		CONTINUE_SETUP=false
+
+	fi
+
+fi
+
+if test "$CONTINUE_SETUP" = "true"
+then
+
+# Full JacORB installation location
+# Caution: JBossTS needs a specially patched version of JacORB.
+# Use $JBOSSTS_HOME/jacorb here unless you have a good reason not to.
+#
+JACORB_HOME=$NARAYANA_HOME/jacorb
+
+# Find classpath separator
+
+CPS=":"
+
+case `uname -a` in
+    CYGWIN_* | Windows* )
+        CPS=";"
+	JACORB_HOME=`echo $JACORB_HOME | sed -e 's;\\\;/;g'`
+	NARAYANA_HOME=`echo $NARAYANA_HOME | sed -e 's;\\\;/;g'`
+    ;;
+esac
+
+
+# Setup EXT classpath
+
+echo Setting up environment
+
+PRODUCT_CLASSPATH="$NARAYANA_HOME/lib/narayana-jts.jar"
+PRODUCT_CLASSPATH="$PRODUCT_CLASSPATH$CPS$NARAYANA_HOME/etc/"
+
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/commons-logging-1.1.jar"
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/connector-api.jar"
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jmxri.jar"
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jndi.jar"
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jta-1_1-classes.zip"
+EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/log4j-1.2.14.jar"
+
+JACORB_CLASSPATH="$JACORB_HOME/lib/jacorb.jar"
+JACORB_CLASSPATH="$JACORB_CLASSPATH$CPS$JACORB_HOME/lib/idl.jar"
+JACORB_CLASSPATH="$JACORB_CLASSPATH$CPS$JACORB_HOME/lib/logkit-1.2.jar"
+JACORB_CLASSPATH="$JACORB_CLASSPATH$CPS$JACORB_HOME/lib/avalon-framework-4.1.5.jar"
+JACORB_CLASSPATH="$JACORB_CLASSPATH$CPS$JACORB_HOME/etc"
+
+CLASSPATH=".$CPS$PRODUCT_CLASSPATH$CPS$EXT_CLASSPATH$CPS$JACORB_CLASSPATH"
+export CLASSPATH
+
+fi

Deleted: labs/jbosstm/trunk/ArjunaCore/scripts/withorb-setup-env.bat
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/scripts/withorb-setup-env.bat	2011-08-11 10:36:47 UTC (rev 37380)
+++ labs/jbosstm/trunk/ArjunaCore/scripts/withorb-setup-env.bat	2011-08-11 10:43:11 UTC (rev 37381)
@@ -1,74 +0,0 @@
-rem
-rem JBoss, Home of Professional Open Source
-rem Copyright 2006, Red Hat Middleware LLC, and individual contributors
-rem as indicated by the @author tags.
-rem See the copyright.txt in the distribution for a
-rem full listing of individual contributors.
-rem This copyrighted material is made available to anyone wishing to use,
-rem modify, copy, or redistribute it subject to the terms and conditions
-rem of the GNU Lesser General Public License, v. 2.1.
-rem This program is distributed in the hope that it will be useful, but WITHOUT A
-rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-rem PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
-rem You should have received a copy of the GNU Lesser General Public License,
-rem v.2.1 along with this distribution; if not, write to the Free Software
-rem Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
-rem MA  02110-1301, USA.
-rem
-rem (C) 2005-2006,
-rem @author JBoss Inc.
-rem
- at echo off
-
-rem Arjuna Technologies Ltd.
-rem Copyright 2004
-rem
-
-if "%JAVA_HOME%"=="" goto java_home_error
-
-echo Environment variable JAVA_HOME set to "%JAVA_HOME%"
-
-if "%NARAYANA_HOME%"=="" goto home_error
-
-echo Environment variable NARAYANA_HOME set to "%NARAYANA_HOME%"
-
-rem Setup EXT classpath
-
-echo Setting up environment
-
-set PRODUCT_CLASSPATH=%NARAYANA_HOME%\lib\narayana-jts.jar
-set PRODUCT_CLASSPATH=%PRODUCT_CLASSPATH%;%NARAYANA_HOME%\etc\
-
-set EXT_CLASSPATH=%NARAYANA_HOME%\lib\ext\commons-logging-1.1.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\connector-api.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jmxri.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jndi.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jta-1_1-classes.zip
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\log4j-1.2.14.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\xercesImpl.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\xmlParserAPIs.jar
-
-rem
-rem Caution: JBossTS needs a specially patched version of JacORB.
-rem Use %JBOSSTS_HOME%\jacorb here unless you have a good reason not to.
-rem
-set JACORB_HOME=PUT_JACORB_HOME_HERE
-set JACORB_CLASSPATH=%JACORB_HOME%\lib\jacorb.jar
-set JACORB_CLASSPATH=%JACORB_CLASSPATH%;%JACORB_HOME%\lib\idl.jar
-set JACORB_CLASSPATH=%JACORB_CLASSPATH%;%JACORB_HOME%\lib\logkit-1.2.jar
-set JACORB_CLASSPATH=%JACORB_CLASSPATH%;%JACORB_HOME%\lib\avalon-framework-4.1.5.jar
-set JACORB_CLASSPATH=%JACORB_CLASSPATH%;%JACORB_HOME%\etc
-
-set CLASSPATH=.;%PRODUCT_CLASSPATH%;%EXT_CLASSPATH%;%JACORB_CLASSPATH%
-
-goto end
-
-:java_home_error
-echo Environment variable JAVA_HOME not set
-goto end
-
-:home_error
-echo Environment variable NARAYANA_HOME not set
-goto end
-
-:end

Deleted: labs/jbosstm/trunk/ArjunaCore/scripts/withorb-setup-env.sh
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/scripts/withorb-setup-env.sh	2011-08-11 10:36:47 UTC (rev 37380)
+++ labs/jbosstm/trunk/ArjunaCore/scripts/withorb-setup-env.sh	2011-08-11 10:43:11 UTC (rev 37381)
@@ -1,90 +0,0 @@
-#
-# JBoss, Home of Professional Open Source
-# Copyright 2006, Red Hat Middleware LLC, and individual contributors
-# as indicated by the @author tags.
-# 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,
-# @author JBoss Inc.
-#
-# Arjuna Technologies Ltd.
-# Copyright 2004
-#
-
-CONTINUE_SETUP=true
-
-if test "x$JAVA_HOME" = "x"
-then
-
-	echo Please ensure the JAVA_HOME environment variable is set
-	CONTINUE_SETUP=false
-
-else
-
-	if test "x$NARAYANA_HOME" = "x"
-	then
-
-		echo Please ensure the NARAYANA_HOME environment variable is set
-		CONTINUE_SETUP=false
-
-	fi
-
-fi
-
-if test "$CONTINUE_SETUP" = "true"
-then
-
-# Full JacORB installation location
-# Caution: JBossTS needs a specially patched version of JacORB.
-# Use $JBOSSTS_HOME/jacorb here unless you have a good reason not to.
-#
-JACORB_HOME=$NARAYANA_HOME/jacorb
-
-# Find classpath separator
-
-CPS=":"
-
-case `uname -a` in
-    CYGWIN_* | Windows* )
-        CPS=";"
-	JACORB_HOME=`echo $JACORB_HOME | sed -e 's;\\\;/;g'`
-	NARAYANA_HOME=`echo $NARAYANA_HOME | sed -e 's;\\\;/;g'`
-    ;;
-esac
-
-
-# Setup EXT classpath
-
-echo Setting up environment
-
-PRODUCT_CLASSPATH="$NARAYANA_HOME/lib/narayana-jts.jar"
-PRODUCT_CLASSPATH="$PRODUCT_CLASSPATH$CPS$NARAYANA_HOME/etc/"
-
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/commons-logging-1.1.jar"
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/connector-api.jar"
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jmxri.jar"
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jndi.jar"
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jta-1_1-classes.zip"
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/log4j-1.2.14.jar"
-
-JACORB_CLASSPATH="$JACORB_HOME/lib/jacorb.jar"
-JACORB_CLASSPATH="$JACORB_CLASSPATH$CPS$JACORB_HOME/lib/idl.jar"
-JACORB_CLASSPATH="$JACORB_CLASSPATH$CPS$JACORB_HOME/lib/logkit-1.2.jar"
-JACORB_CLASSPATH="$JACORB_CLASSPATH$CPS$JACORB_HOME/lib/avalon-framework-4.1.5.jar"
-JACORB_CLASSPATH="$JACORB_CLASSPATH$CPS$JACORB_HOME/etc"
-
-CLASSPATH=".$CPS$PRODUCT_CLASSPATH$CPS$EXT_CLASSPATH$CPS$JACORB_CLASSPATH"
-export CLASSPATH
-
-fi

Deleted: labs/jbosstm/trunk/ArjunaCore/scripts/withoutorb-setup-env.bat
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/scripts/withoutorb-setup-env.bat	2011-08-11 10:36:47 UTC (rev 37380)
+++ labs/jbosstm/trunk/ArjunaCore/scripts/withoutorb-setup-env.bat	2011-08-11 10:43:11 UTC (rev 37381)
@@ -1,63 +0,0 @@
-rem
-rem JBoss, Home of Professional Open Source
-rem Copyright 2006, Red Hat Middleware LLC, and individual contributors
-rem as indicated by the @author tags.
-rem See the copyright.txt in the distribution for a
-rem full listing of individual contributors.
-rem This copyrighted material is made available to anyone wishing to use,
-rem modify, copy, or redistribute it subject to the terms and conditions
-rem of the GNU Lesser General Public License, v. 2.1.
-rem This program is distributed in the hope that it will be useful, but WITHOUT A
-rem WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-rem PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
-rem You should have received a copy of the GNU Lesser General Public License,
-rem v.2.1 along with this distribution; if not, write to the Free Software
-rem Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
-rem MA  02110-1301, USA.
-rem
-rem (C) 2005-2006,
-rem @author JBoss Inc.
-rem
- at echo off
-
-rem Arjuna Technologies Ltd.
-rem Copyright 2004
-rem
-
-if "%JAVA_HOME%"=="" goto java_home_error
-
-echo Environment variable JAVA_HOME set to "%JAVA_HOME%"
-
-if "%NARAYANA_HOME%"=="" goto home_error
-
-echo Environment variable NARAYANA_HOME set to "%NARAYANA_HOME%"
-
-rem Setup EXT classpath
-
-echo Setting up environment
-
-set PRODUCT_CLASSPATH=%NARAYANA_HOME%\lib\narayana-jta.jar
-set PRODUCT_CLASSPATH=%PRODUCT_CLASSPATH%;%NARAYANA_HOME%\etc\
-
-set EXT_CLASSPATH=%NARAYANA_HOME%\lib\ext\commons-logging-1.1.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\connector-api.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jmxri.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jndi.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\jta-1_1-classes.zip
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\log4j-1.2.14.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\xercesImpl.jar
-set EXT_CLASSPATH=%EXT_CLASSPATH%;%NARAYANA_HOME%\lib\ext\xmlParserAPIs.jar
-
-set CLASSPATH=.;%PRODUCT_CLASSPATH%;%EXT_CLASSPATH%
-
-goto end
-
-:java_home_error
-echo Environment variable JAVA_HOME not set
-goto end
-
-:home_error
-echo Environment variable NARAYANA_HOME not set
-goto end
-
-:end

Deleted: labs/jbosstm/trunk/ArjunaCore/scripts/withoutorb-setup-env.sh
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/scripts/withoutorb-setup-env.sh	2011-08-11 10:36:47 UTC (rev 37380)
+++ labs/jbosstm/trunk/ArjunaCore/scripts/withoutorb-setup-env.sh	2011-08-11 10:43:11 UTC (rev 37381)
@@ -1,77 +0,0 @@
-#
-# JBoss, Home of Professional Open Source
-# Copyright 2006, Red Hat Middleware LLC, and individual contributors
-# as indicated by the @author tags.
-# 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,
-# @author JBoss Inc.
-#
-# Arjuna Technologies Ltd.
-# Copyright 2004
-#
-
-CONTINUE_SETUP=true
-
-if test "x$JAVA_HOME" = "x"
-then
-
-	echo Please ensure the JAVA_HOME environment variable is set
-	CONTINUE_SETUP=false
-
-else
-
-	if test "x$NARAYANA_HOME" = "x"
-	then
-
-		echo Please ensure the NARAYANA_HOME environment variable is set
-		CONTINUE_SETUP=false
-
-	fi
-
-fi
-
-if test "$CONTINUE_SETUP" = "true"
-then
-
-# Find classpath separator
-
-CPS=":"
-
-case `uname -a` in
-    CYGWIN_* | Windows* )
-        CPS=";"
-	NARAYANA_HOME=`echo $NARAYANA_HOME | sed -e 's;\\\;/;g'`
-    ;;
-esac
-
-
-# Setup EXT classpath
-
-echo Setting up environment
-
-PRODUCT_CLASSPATH="$NARAYANA_HOME/lib/narayana-jta.jar"
-PRODUCT_CLASSPATH="$PRODUCT_CLASSPATH$CPS$NARAYANA_HOME/etc/"
-
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/commons-logging-1.1.jar"
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/connector-api.jar"
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jmxri.jar"
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jndi.jar"
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/jta-1_1-classes.zip"
-EXT_CLASSPATH="$EXT_CLASSPATH$CPS$NARAYANA_HOME/lib/ext/log4j-1.2.14.jar"
-
-CLASSPATH=".$CPS$PRODUCT_CLASSPATH$CPS$EXT_CLASSPATH"
-export CLASSPATH
-
-fi



More information about the jboss-svn-commits mailing list