0
我最近做了一個build.xml來運行我的java類和一個測試類。然而,當我跑它通過UNIX ./build.xml
build.xml中意外的新行
它給了我一個錯誤:
./build.xml: line 1: syntax error near unexpected token `newline'
./build.xml: line 1: `<?xml version="1.0"?>'
這是我的構建文件:
<?xml version="1.0"?>
<project default='test'>
<target name='test' depends='compile'>
<junit>
<formatter type='plain'/>
<test name='gIntTest'/>
<classpath>
<pathelement path="."/>
</classpath>
</junit>
<java classname="gIntTest" classpath="." fork="true" />
</target>
<target name="compile">
<javac srcdir="." includeantruntime="false"/>
</target>
</project>
它總是那麼它們是人類可讀太縮進您的文件是個好主意。 – Andreas