Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Commit

Permalink
scratch
Browse files Browse the repository at this point in the history
Former-commit-id: cd0e6e973d82dae9949c2c3bc0365d3df1b85824
  • Loading branch information
tbassett committed Jun 22, 2010
1 parent 67f4775 commit caf327a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -1788,6 +1788,7 @@ samples/uml/package-list -text
samples/uml/resources/inherit.gif -text
samples/uml/serialized-form.html -text
samples/uml/stylesheet.css -text
scratch/main/build.xml -text
software/ant-contrib/build.properties -text
software/ant-contrib/build.xml -text
software/ant-contrib/docs/LICENSE.txt -text
Expand Down
15 changes: 15 additions & 0 deletions scratch/main/build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<project name="scratch" default="test" basedir=".">

<property environment="env"/>

<target name="test">
<echo>test:JAVA_HOME=${env.JAVA_HOME}</echo>
<exec executable="ant" dir="${basedir}">
<arg line="test2"/>
</exec>
</target>
<target name="test2">
<echo>test:JAVA_HOME=${env.JAVA_HOME}</echo>
</target>
</project>

0 comments on commit caf327a

Please sign in to comment.