11
A
回答
12
用不了多長時間 - 螞蟻並不難。
下面是一個示例,可重用的build.xml,您可以從中開始。這對我來說是足夠通用的重用。目錄命名約定應該很容易遵循。我使用模仿IntelliJ輸出的佈局。
<?xml version="1.0" encoding="UTF-8"?>
<project name="xslt-converter" basedir="." default="package">
<property name="version" value="1.6"/>
<property name="haltonfailure" value="no"/>
<property name="out" value="out"/>
<property name="production.src" value="src"/>
<property name="production.lib" value="lib"/>
<property name="production.resources" value="config"/>
<property name="production.classes" value="${out}/production/${ant.project.name}"/>
<property name="test.src" value="test"/>
<property name="test.lib" value="lib"/>
<property name="test.resources" value="config"/>
<property name="test.classes" value="${out}/test/${ant.project.name}"/>
<property name="exploded" value="out/exploded/${ant.project.name}"/>
<property name="exploded.classes" value="${exploded}/WEB-INF/classes"/>
<property name="exploded.lib" value="${exploded}/WEB-INF/lib"/>
<property name="reports.out" value="${out}/reports"/>
<property name="junit.out" value="${reports.out}/junit"/>
<property name="testng.out" value="${reports.out}/testng"/>
<path id="production.class.path">
<pathelement location="${production.classes}"/>
<pathelement location="${production.resources}"/>
<fileset dir="${production.lib}">
<include name="**/*.jar"/>
<exclude name="**/junit*.jar"/>
<exclude name="**/*test*.jar"/>
</fileset>
</path>
<path id="test.class.path">
<path refid="production.class.path"/>
<pathelement location="${test.classes}"/>
<pathelement location="${test.resources}"/>
<fileset dir="${test.lib}">
<include name="**/junit*.jar"/>
<include name="**/*test*.jar"/>
</fileset>
</path>
<path id="testng.class.path">
<fileset dir="${test.lib}">
<include name="**/testng*.jar"/>
</fileset>
</path>
<available file="${out}" property="outputExists"/>
<target name="clean" description="remove all generated artifacts" if="outputExists">
<delete dir="${out}" includeEmptyDirs="true"/>
<delete dir="${reports.out}" includeEmptyDirs="true"/>
</target>
<target name="create" description="create the output directories" unless="outputExists">
<mkdir dir="${production.classes}"/>
<mkdir dir="${test.classes}"/>
<mkdir dir="${reports.out}"/>
<mkdir dir="${junit.out}"/>
<mkdir dir="${testng.out}"/>
<mkdir dir="${exploded.classes}"/>
<mkdir dir="${exploded.lib}"/>
</target>
<target name="compile" description="compile all .java source files" depends="create">
<!-- Debug output
<property name="production.class.path" refid="production.class.path"/>
<echo message="${production.class.path}"/>
-->
<javac srcdir="src" destdir="${out}/production/${ant.project.name}" debug="on" source="${version}">
<classpath refid="production.class.path"/>
<include name="**/*.java"/>
<exclude name="**/*Test.java"/>
</javac>
<javac srcdir="${test.src}" destdir="${out}/test/${ant.project.name}" debug="on" source="${version}">
<classpath refid="test.class.path"/>
<include name="**/*Test.java"/>
</javac>
</target>
<target name="junit-test" description="run all junit tests" depends="compile">
<!-- Debug output
<property name="test.class.path" refid="test.class.path"/>
<echo message="${test.class.path}"/>
-->
<junit printsummary="yes" haltonfailure="${haltonfailure}">
<classpath refid="test.class.path"/>
<formatter type="xml"/>
<batchtest fork="yes" todir="${junit.out}">
<fileset dir="${test.src}">
<include name="**/*Test.java"/>
</fileset>
</batchtest>
</junit>
<junitreport todir="${junit.out}">
<fileset dir="${junit.out}">
<include name="TEST-*.xml"/>
</fileset>
<report todir="${junit.out}" format="frames"/>
</junitreport>
</target>
<taskdef resource="testngtasks" classpathref="testng.class.path"/>
<target name="testng-test" description="run all testng tests" depends="compile">
<!-- Debug output
<property name="test.class.path" refid="test.class.path"/>
<echo message="${test.class.path}"/>
-->
<testng classpathref="test.class.path" outputDir="${testng.out}" haltOnFailure="${haltonfailure}" verbose="2" parallel="methods" threadcount="50">
<classfileset dir="${out}/test/${ant.project.name}" includes="**/*.class"/>
</testng>
</target>
<target name="exploded" description="create exploded deployment" depends="testng-test">
<copy todir="${exploded.classes}">
<fileset dir="${production.classes}"/>
</copy>
<copy todir="${exploded.lib}">
<fileset dir="${production.lib}"/>
</copy>
</target>
<target name="package" description="create package file" depends="exploded">
<jar destfile="${out}/${ant.project.name}.jar" basedir="${production.classes}" includes="**/*.class"/>
</target>
</project>
8
相關問題
- 1. 學習編寫慣用c#的最佳資源是什麼?
- 2. 什麼是學習.NET webservices的最佳資源?
- 3. 什麼是學習(N)ASM的最佳資源?
- 4. 什麼是學習基於證據調度的最佳資源?
- 5. 什麼是學習XML的最佳資源?
- 6. 什麼是學習CIL的最佳資源(MSIL)
- 7. 什麼是學習Windows PowerShell的最佳資源?
- 8. 什麼是學習Java Portlet Specification(JSR-168)的最佳資源?
- 9. 什麼是學習MSBuild的最佳資源?
- 10. iOS:學習使用Interface Builder的最佳資源是什麼
- 11. 學習AngularJS的最佳資源
- 12. 學習MVC 3的最佳資源?
- 13. OAuth的最佳學習資源
- 14. 學習Core Data的最佳資源?
- 15. 學習MEAN Stack的最佳資源
- 16. 學習PyGame的最佳資源?
- 17. 學習mediawiki的最佳資源?
- 18. 學習.NET泛型的最佳資源?
- 19. Spring MVC的最佳學習資源?
- 20. 什麼是學習XNA的好資源?
- 21. 最佳資源學習JSP和Servlets?
- 22. 什麼是學習機器學習的最佳編程語言?
- 23. 學習windbg的功能和優點的最佳資源是什麼?
- 24. 什麼是學習視覺工作室工具的單一最佳資源?
- 25. 向ASP.NET程序員教授ASP.NET MVC的最佳學習資源是什麼?
- 26. 什麼是用於學習OpenOffice.org腳本API的(單一)最佳在線資源?
- 27. 什麼是學習UML的最佳來源?
- 28. 什麼是學習PHP擴展最值得推薦的資源?
- 29. 學習Grails有什麼好的資源?
- 30. 學習json有什麼好的資源?
謝謝你的例子!我認爲這將對未來的參考非常有用。 – frm 2010-07-29 23:35:46
原諒我 - 我發佈了錯誤的文件。現在在那裏的那個是我推薦的。我希望你會發現它很乾淨,易於理解,並且很容易適應你自己的情況。 – duffymo 2010-07-30 00:00:53