NIHVIVO-56 Cleanup comments in build scripts.

This commit is contained in:
jeb228 2010-02-22 13:32:29 +00:00
parent 82d8322393
commit 1afb527408
2 changed files with 15 additions and 13 deletions

View file

@ -34,7 +34,7 @@
<condition property="logfile.prefix" value="">
<equals arg1="${ant.file.vitroCore}" arg2="${ant.file}" />
</condition>
<property name="logfile.prefix" value="${ant.project.name}."/>
<property name="logfile.prefix" value="${ant.project.name}." />
@ -67,7 +67,7 @@
<!-- =================================
target: describe
================================= -->
<target name="describe" description="--> The default target.">
<target name="describe" description="--> Describe the targets (this is the default).">
<echo>
all - Runs "clean", then "deploy".
clean - Delete all artifacts so the next build will be from scratch.
@ -81,7 +81,7 @@ deploy - Deploy the application directly into the Tomcat webapps directory.
<!-- =================================
target: all
================================= -->
<target name="all" depends="clean, deploy" description="Run 'clean', then 'deploy'" />
<target name="all" depends="clean, deploy" description="--> Run 'clean', then 'deploy'" />
<!-- =================================
target: clean
@ -145,7 +145,7 @@ deploy - Deploy the application directly into the Tomcat webapps directory.
<!-- =================================
target: compile
================================= -->
<target name="compile" depends="prepare" description="Compile Java sources">
<target name="compile" depends="prepare" description="--> Compile Java sources">
<!-- deletes all files that depend on changed .java files -->
<depend srcdir="${webapp.dir}/src"
destdir="${build.dir}/war/WEB-INF/classes"
@ -167,7 +167,7 @@ deploy - Deploy the application directly into the Tomcat webapps directory.
<!-- =================================
target: test
================================= -->
<target name="test" depends="compile" description="Run JUnit tests">
<target name="test" depends="compile" description="--> Run JUnit tests">
<javac srcdir="${webapp.dir}/test"
destdir="${build.dir}/testclasses"
debug="true"
@ -259,7 +259,7 @@ deploy - Deploy the application directly into the Tomcat webapps directory.
<!-- =================================
target: deploy
================================= -->
<target name="deploy" depends="copyEtc" description="Deploy to Tomcat">
<target name="deploy" depends="copyEtc" description="--> Build the app and install in Tomcat">
<property name="webapp.deploy.home" value="${tomcat.home}/webapps/${webapp.name}" />
<mkdir dir="${webapp.deploy.home}" />

View file

@ -70,7 +70,7 @@
<!-- =================================
target: describe
================================= -->
<target name="describe" description="--> The default target.">
<target name="describe" description="--> Describe the targets (this is the default).">
<echo>
all - Runs "clean", then "deploy".
clean - Delete all artifacts so the next build will be from scratch.
@ -84,7 +84,7 @@ deploy - Deploy the application directly into the Tomcat webapps directory.
<!-- =================================
target: all
================================= -->
<target name="all" depends="clean, deploy" description="Run 'clean', then 'deploy'" />
<target name="all" depends="clean, deploy" description="--> Run 'clean', then 'deploy'" />
<!-- =================================
target: clean
@ -103,13 +103,15 @@ deploy - Deploy the application directly into the Tomcat webapps directory.
<!-- =================================
target: test
================================= -->
<target name="test" depends="vitroCore.test, productTest" description="-->Run JUnit tests">
<target name="test" depends="vitroCore.test, productTest" description="--> Run JUnit tests">
</target>
<!-- =================================
target: deploy
================================= -->
<target name="deploy" depends="productCopy, vitroCore.deploy" description="description">
<target name="deploy"
depends="productCopy, vitroCore.deploy"
description="--> Build the app and install in Tomcat">
</target>
<!-- - - - - - - - - - - - - - - - - -