Updated build.properties

This commit is contained in:
travismccauley 2003-11-26 14:22:19 +00:00
parent 8401cc0d6f
commit 830eef4fef
3 changed files with 28 additions and 9 deletions

View file

@ -2,10 +2,10 @@
catalina.home=/usr/local/tomcat8080 catalina.home=/usr/local/tomcat8080
catalina.base=/usr/local/tomcat2020 catalina.base=/usr/local/tomcat2020
url=http://localhost:2020/manager url=http://localhost:2020/manager
username=travis username=
password=bavis password=
#These properties need to be set to run the unit tests. They are your login to the dictionary #These properties need to be set to run the unit tests. They are your login to the dictionary
lex.username=travis lex.username=
lex.password=bavis lex.password=
jmeter.home=/Users/travis/webapps/jmeter jmeterhome=/Users/travis/webapps/jmeter

View file

@ -13,8 +13,8 @@
<!-- Configure the context path for this application --> <!-- Configure the context path for this application -->
<property name="path" value="/lex"/> <property name="path" value="/lex"/>
<property file="${user.home}/.${ant.project.name}-build.properties"/> <!-- <property file="${user.home}/.${ant.project.name}-build.properties"/>
<property file="${user.home}/.build.properties"/> <property file="${user.home}/.build.properties"/> -->
<property file="build.properties"/> <property file="build.properties"/>
<!-- Configure the custom Ant tasks for the Manager application <!-- Configure the custom Ant tasks for the Manager application
@ -181,7 +181,27 @@
<target name="install-test" description="Remove and Re-install web application" depends="install"> <target name="install-test" description="Remove and Re-install web application" depends="install">
<antcall target="test"/> <antcall target="test"/>
</target> </target>
<target name="jmeter">
<taskdef name="jmeter" classname="org.programmerplanet.ant.taskdefs.jmeter.JMeterTask"/>
<echo message="${jmeterhome}"/>
<jmeter
jmeterhome="../jmeter"
testplan="${basedir}/loadtests/LoadTest.jmx"
resultlog="${basedir}/loadtests/JMeterResults.jtl"/>
<!--
For the following task to work, jmeter.properties needs to have the following properties set thusly:
jmeter.save.saveservice.assertion_results=all
jmeter.save.saveservice.output_format=xml
-->
<xslt
in="${basedir}/loadtests/JMeterResults.jtl"
out="${basedir}/loadtests/JMeterResults.html"
style="${jmeterhome}/extras/jmeter-results-report.xsl"/>
</target>
<target name="hbm2java" description="generate source code"> <target name="hbm2java" description="generate source code">
<tstamp prefix="now"/> <tstamp prefix="now"/>
<echo message="time is: ${now.DSTAMP}_${now.TSTAMP}"/> <echo message="time is: ${now.DSTAMP}_${now.TSTAMP}"/>

View file

@ -34,4 +34,3 @@ log4j.logger.net.sf.hibernate.type=info
### log prepared statement cache activity ### ### log prepared statement cache activity ###
log4j.logger.net.sf.hibernate.ps.PreparedStatementCache=info log4j.logger.net.sf.hibernate.ps.PreparedStatementCache=info