[jboss-svn-commits] JBL Code SVN: r30109 - labs/jbosstm/workspace/whitingjr/trunk/performance.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Nov 11 12:39:22 EST 2009


Author: whitingjr
Date: 2009-11-11 12:39:22 -0500 (Wed, 11 Nov 2009)
New Revision: 30109

Modified:
   labs/jbosstm/workspace/whitingjr/trunk/performance/build.xml
Log:
Removed Maven integration for dependency loading. Removes dependency searching each time start script.

Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/build.xml
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/build.xml	2009-11-11 17:37:55 UTC (rev 30108)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/build.xml	2009-11-11 17:39:22 UTC (rev 30109)
@@ -6,7 +6,7 @@
 	<property name="M2_HOME" value="${user.home}/.m2" />
 	<property name="MAVEN_ANT_TASK_VERSION" value="2.0.10" />
 	<!-- to download dependencies execute mvn package on this module before calling ant script -->
-	<path id="maven-ant-tasks.classpath" path="${M2_HOME}/repository/org/apache/maven/maven-ant-tasks/${MAVEN_ANT_TASK_VERSION}/maven-ant-tasks-${MAVEN_ANT_TASK_VERSION}.jar" />
+	<!--path id="maven-ant-tasks.classpath" path="${M2_HOME}/repository/org/apache/maven/maven-ant-tasks/${MAVEN_ANT_TASK_VERSION}/maven-ant-tasks-${MAVEN_ANT_TASK_VERSION}.jar" />
 	<typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="antlib:org.apache.maven.artifact.ant" classpathref="maven-ant-tasks.classpath" />
 	<artifact:pom id="tsperfpom" file="pom.xml" />
 	<artifact:dependencies pathId="tsperf">
@@ -17,7 +17,7 @@
 		<dependency groupId="org.slf4j" artifactId="slf4j-log4j12" version="1.5.8" />
 		<dependency groupId="commons-dbutils" artifactId="commons-dbutils" version="1.2" />
 		<dependency groupId="commons-io" artifactId="commons-io" version="1.4" />
-	</artifact:dependencies>
+	</artifact:dependencies-->
 
 	<property name="required-args" value="-Dtransaction.strategy=value -Ddb.installation=value -Ddb.vendor=value -Djdbc-datasource=value" />
 	<property name="optional-args" value="-Dtransaction.log.store=value" />
@@ -39,7 +39,7 @@
 	</path>
 
 	<path id="demo.compile.classpath">
-		<path refid="tsperf" />
+		<!--path refid="tsperf" /-->
 		<pathelement path="/home/whitingjr/.m2/repository/log4j/log4j/1.2.15/log4j-1.2.15.jar" />
 		<pathelement path="lib/client.jar" />
 		<pathelement path="/home/whitingjr/.m2/repository/org/dbunit/dbunit/2.4.6/dbunit-2.4.6.jar" />
@@ -51,6 +51,13 @@
 		<pathelement path="lib/hibernate3.jar" />
 		<pathelement path="lib/hibernate-annotations.jar" />
 		<pathelement path="lib/hibernate-entitymanager.jar" />
+		<pathelement path="lib/jbossjta-4.8.0_GA-standalone.jar" />
+		<pathelement path="lib/jip-1.0.jar" />
+		<pathelement path="lib/jip-client-1.0.jar" />
+		<pathelement path="lib/slf4j-api-1.5.8.jar" />
+		<pathelement path="lib/slf4j-log4j12-1.5.8.jar" />
+		<pathelement path="lib/commons-dbutils-1.2.jar" />
+		<pathelement path="lib/commons-io-1.4.jar" />
 		<path refid="database.driver" />
 	</path>
 
@@ -198,8 +205,8 @@
 	</target-->
 
 	<target name="compile" depends="prepare">
-		<javac srcdir="src/main/java" destdir="${build.classes.dir}" classpathref="demo.compile.classpath" debug="true"/>
-		<javac srcdir="src/test/java" destdir="${build.classes.dir}" classpathref="demo.run.classpath" debug="true"/>
+		<javac srcdir="src/main/java" destdir="${build.classes.dir}" classpathref="demo.compile.classpath" debug="true" />
+		<javac srcdir="src/test/java" destdir="${build.classes.dir}" classpathref="demo.run.classpath" debug="true" />
 	</target>
 
 	<target name="profile-ejb3" depends="compile">
@@ -224,7 +231,7 @@
 			<jvmarg value="-javaagent:lib/profile.jar" />
 			<jvmarg value="-Dprofile.properties=build/classes/profile.properties" />
 			<jvmarg value="-Xdebug" />
-			<jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000" />
+			<jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000" />
 			<classpath>
 				<path refid="demo.test.classpath" />
 			</classpath>



More information about the jboss-svn-commits mailing list