[jboss-cvs] JBossAS SVN: r103049 - projects/aop/trunk/asintegration-core/src/etc.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Mar 26 11:03:07 EDT 2010


Author: flavia.rainone at jboss.com
Date: 2010-03-26 11:03:06 -0400 (Fri, 26 Mar 2010)
New Revision: 103049

Added:
   projects/aop/trunk/asintegration-core/src/etc/jboss-50-run.conf
   projects/aop/trunk/asintegration-core/src/etc/jboss-50-run.conf.bat
Log:
[JBAOP-777] Forgot to add the new jboss-50-run.conf and jboss-50-run.conf.bat new files in the previous commit, which broke build.sh release. Fixed now.

Added: projects/aop/trunk/asintegration-core/src/etc/jboss-50-run.conf
===================================================================
--- projects/aop/trunk/asintegration-core/src/etc/jboss-50-run.conf	                        (rev 0)
+++ projects/aop/trunk/asintegration-core/src/etc/jboss-50-run.conf	2010-03-26 15:03:06 UTC (rev 103049)
@@ -0,0 +1,13 @@
+# Appended by JBoss AOP Installation Script (do not remove this line)
+# the _AOP suffix is to avoid name crashes
+DIR_AOP=`dirname $0`
+DIR_AOP=`cd $DIR_AOP/..; pwd;`
+NEW_CLASSPATH_AOP="$DIR_AOP/lib/jboss-classpool-scoped.jar:$DIR_AOP/lib/jboss-classpool.jar:$DIR_AOP/lib/javassist.jar:$DIR_AOP/lib/jboss-logging-spi.jar:$DIR_AOP/lib/jboss-common-core.jar"
+if [ "x$JBOSS_CLASSPATH" = "x" ]; then
+    JBOSS_CLASSPATH="$NEW_CLASSPATH_AOP"
+else
+    JBOSS_CLASSPATH="$NEW_CLASSPATH_AOP:$JBOSS_CLASSPATH"
+fi
+
+# End of lines added by JBoss AOP Installation Script (do not remove this line)
+

Added: projects/aop/trunk/asintegration-core/src/etc/jboss-50-run.conf.bat
===================================================================
--- projects/aop/trunk/asintegration-core/src/etc/jboss-50-run.conf.bat	                        (rev 0)
+++ projects/aop/trunk/asintegration-core/src/etc/jboss-50-run.conf.bat	2010-03-26 15:03:06 UTC (rev 103049)
@@ -0,0 +1,21 @@
+rem Appended by JBoss AOP Installation Script
+rem the _AOP suffix is to avoid name crashes
+
+if "%OS%" == "Windows_NT" (
+  set "DIR_AOP=%~dp0%"
+) else (
+  set DIR_AOP=.\
+)
+pushd %DIR_AOP%..
+set "DIR_AOP=%CD%"
+popd
+
+set "NEW_CLASSPATH_AOP=%DIR_AOP%\lib\jboss-classpool-scoped.jar;%DIR_AOP%\lib\jboss-classpool.jar;%DIR_AOP%\lib\javassist.jar;%DIR_AOP%\lib\jboss-logging-spi.jar:%DIR_AOP%\lib\jboss-common-core.jar"
+if "x%JBOSS_CLASSPATH%" == "x" (
+  set "JBOSS_CLASSPATH=%NEW_CLASSPATH_AOP%"
+) else (
+  set "JBOSS_CLASSPATH=%NEW_CLASSPATH_AOP%;%JBOSS_CLASSPATH%"
+)
+
+rem End of lines added by JBoss AOP Installation Script
+




More information about the jboss-cvs-commits mailing list