Jenkins上級シリーズ - 16 JENKINSのもとで完結するANT BUILD.XMLファイル
2022-02-27 21:46:51
インターネットで見たのですが、本当に完成度が高くて、基本的にあるべきものはすべて網羅されていますね。ちょっと変えて使ってみるのもいいかもしれませんね。
注:プロパティ内の値は、あなた自身のローカル変数の一部です。あなた自身のローカル変数に変更する必要があります。
<未定義xml version="1.0" encoding="UTF-8"? > <project name="genwar" default="all" basedir=". "> <description> - Generate war file - </description> <property environment="env" /> <property name="debuglevel" value="source,lines,vars" /> <property name="target" value="1.6" /> <property name="source" value="1.6" /> <property name="output.dir" location=". " /> <property name="output.file" value="new_cos.war" /> <property name="project.build" location=". /build" /> <property name="project.src" location=". /src" /> <property name="project.web" location=". /web" /> <property name="project.lib" location=". /lib" /> <property name="project.res" location=". /res" /> <property name="project.svc" location=". /svc" /> <property name="project.war" location="${project.build}/${output.file}" /> <property name="tmp" location="${project.build}/tmp" /> <property name="tmp.src" location="${tmp}/src" /> <property name="tmp.lib" location="${project.web}/WEB-INF/lib" /> <property name="tmp.bin" location="${tmp}/bin" /> <property name="tmp.web" location="${tmp}/web" /> <property name="tmp.classes" location="${tmp}/classes" /> <property name="checkstyle.dir" location=". /ant-task/checkstyle" /> <property name="findbugs.dir" location=". /ant-task/findbugs/home" /> <property name="findbugs.report.dir" location=". /ant-task/findbugs" /> <property name="junit.reports.dir" value=". /ant-task/junit/reports" /> <property name="junit.class.dir" value=". /ant-task/junit/bin" /> <property name="junit.test.src" location=". /test/java" /> <property name="junit.test.resources" location=". /test/resources" /> <path id="javaclass.path"> <pathelement path="${env.classpath}" /> <pathelement path="${env.JBOSS_HOME}/server/all/lib/servlet-api.jar" /> <pathelement path="${env.JBOSS_HOME}/server/all/lib/jsp-api.jar" /> <fileset dir="${tmp.lib}" includes="*.jar" /> --> </path> <path id="findbugs.path"> <fileset dir="${findbugs.dir}" includes="**/*.jar" /> </path> <target name="clean"> <delete file="${output.dir}/${output.file}" failonerror="false" /> <delete dir="${project.build}" failonerror="false" /> <mkdir dir="${project.build}" /> </target> <target name="all" depends="clean,buildwar" /> <target name="initdir"> <echo message="Init directories " /> <delete dir="${tmp}" failonerror="false" /> <mkdir dir="${tmp}" /> <mkdir dir="${tmp.src}" /> <copy todir="${tmp.src}"> <fileset dir="${project.src}" excludes="**/.svn/**" /> </copy> <mkdir dir="${tmp.lib}" /> --> <mkdir dir="${tmp.bin}" /> <mkdir dir="${tmp.web}/WEB-INF/lib" /> <delete dir="${tmp.web}/WEB-INF/classes" failonerror="false" /> <mkdir dir="${tmp.web}/WEB-INF/classes" /> </target> <target name="compilejava" depends="initdir"> <echo message="Compiling java code " /> <javac debug="true" debuglevel="${debuglevel}" destdir="${tmp.bin}" source="${source}" target="${target}" encoding="UTF-8"> <src path="${tmp.src}" /> <classpath refid="javaclass.path" /> </javac> <copy todir="${tmp.web}/WEB-INF/classes" includeemptydirs="false"> <fileset dir="${tmp.src}"> <exclude name="**/*.java" /> </fileset> </copy> <copy todir="${tmp.web}/WEB-INF/classes" includeemptydirs="false"> <fileset dir="${tmp.bin}"> <include name="**/*.class" /> </fileset> </copy> </target> <target name="compilejava-without-copy" depends="initdir"> <echo message="Compiling java code " /> <javac debug="true" debuglevel="${debuglevel}" destdir="${tmp.bin}" source="${source}" target="${target}" encoding="UTF-8"> <src path="${tmp.src}" /> <classpath refid="javaclass.path" /> </javac> </target> <target name="buildwar" depends="compilejava"> <echo message="Packing war file " /> <copy todir="${tmp.web}"> <fileset dir="${project.web}" excludes="**/.svn/**" /> </copy> <delete file="${project.war}" failonerror="false" /> <war destfile="${project.war}" basedir="${tmp.web}" webxml="${tmp.web}/WEB-INF/web.xml" encoding=& quot;utf-8" /> <delete dir="${tmp}" failonerror="false" /> <delete file="${output.dir}/${output.file}" failonerror="false" /> <move todir="${output.dir}" includeemptydirs="false" filtering="true"> <fileset dir="${project.build}"> <include name="**/*.war" /> </fileset> </move> <delete dir="${project.build}" failonerror="false" /> </target> <taskdef resource="checkstyletask.properties" classpath="${checkstyle.dir}/checkstyle-5.5-all.jar"/> <target name="checkstyle" description="Generates a report of code convention violations."> <checkstyle config="${checkstyle.dir}/my_check.xml" failureProperty="checkstyle.failure" failOnViolation="false"> <formatter type="xml" tofile="${checkstyle.dir}/checkstyle_report.xml" /> <fileset dir="${project.src}" includes="**/*.java" /> </checkstyle> style in="checkstyle_report.xml" out="checkstyle_report.html" style="checkstyle.xsl" /--> </target> <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpathref ="findbugs.path"/> <target name="findbugs" depends="compilejava-without-copy" description="Check for code errors with Findbugs. "> <echo>Start checking for code errors with Findbugs</echo> <findbugs home="${findbugs.dir}" output="xml" outputFile="${findbugs.report.dir}/findbugs_report.xml" > <auxClasspath > <path refid="junit.test.lib.path" /> </auxClasspath> auxClasspath path="${basedir}/lib/Regex.jar" /--> <sourcePath path="${tmp.src}" /> <class location="${tmp.bin}" /> </findbugs> <echo>Findbugs check code error complete </echo> <delete dir="${project.build}" failonerror="false" /> </target> <target name="junit-init" > <delete dir="${junit.class.dir}" failonerror="false" /> <mkdir dir="${junit.class.dir}" /> <delete dir="${junit.reports.dir}/result-xml" failonerror="false" /> <mkdir dir="${junit.reports.dir}/result-xml" /> <delete dir="${junit.reports.dir}/html" failonerror="false" /> <mkdir dir="${junit.reports.dir}/html" /> <delete dir="${junit.reports.dir}/html-result" failonerror="false" /> <mkdir dir="${junit.reports.dir}/html-result" /> </target> <target name="junit-compile" depends="junit-init"> <echo message="${project.web}/WEB-INF/lib"/> <javac srcdir="${project.src}" destdir="${junit.class.dir}" source="${source}" target="${target} " encoding="UTF-8"> <classpath refid="junit.test.lib.path" /> </javac> <javac srcdir="${junit.test.src}" destdir="${junit.class.dir}" source="${source}" target="${ target}" encoding="UTF-8"> <classpath refid="junit.test.lib.path" /> </javac> <copy todir="${junit.class.dir}"> <fileset dir="${junit.test.resources}"> <include name="**/*.xml" /> </fileset> </copy> <copy todir="${junit.class.dir}"> <fileset dir="${project.src}"> <include name="**/*.xml" /> </fileset> </copy> </target> <path id="junit.test.lib.path"> <pathelement path="${env.JBOSS_HOME}/server/all/lib/servlet-api.jar" /> <pathelement path="${env.JBOSS_HOME}/server/all/lib/jsp-api.jar" /> <pathelement path="${env.JBOSS_HOME}/server/all/lib/jboss-j2ee.jar" /> <fileset dir="${project.web}/WEB-INF/lib" includes="**/*.jar" /> <fileset dir="${project.lib}" includes="**/*.jar" /> </path> <target name="junit-test" depends="junit-compile"> <junit printsummary="yes"> <classpath> Specify lib and class paths, class and jar declarations should not be mixed together --> <pathelement location="${junit.class.dir}" /> <path refid="junit.test.lib.path" /> </classpath> <batchtest todir="${junit.reports.dir}/result-xml"> <fileset dir="${junit.test.src}" includes="**/*TestCase.java" /> <formatter type="xml" /> </batchtest> </junit> <junitreport todir="${junit.reports.dir}/html-result"> Specify the XML of the test results, i.e. the XML generated in the previous step --> <fileset dir="${junit.reports.dir}/result-xml"> <include name="TEST-*.xml" /> </fileset> Generate TESTS-TestSuites.xml from the test result XML, and the resulting HTML file --> <report format="frames" todir="${junit.reports.dir}/html" /> --> </junitreport> </target> </project>
<未定義 <ファイルセット--> </path> <path id="findbugs.path"> <fileset dir="${findbugs.dir}" includes="**/*.jar" /> </path> <target name="clean"> <delete file="${output.dir}/${output.file}" failonerror="false" /> <delete dir="${project.build}" failonerror="false" /> <mkdir dir="${project.build}" /> </target> <target name="all" depends="clean,buildwar" /> <target name="initdir"> <echo message="Init directories " /> <delete dir="${tmp}" failonerror="false" /> <mkdir dir="${tmp}" /> <mkdir dir="${tmp.src}" /> <copy todir="${tmp.src}"> <fileset dir="${project.src}" excludes="**/.svn/**" /> </copy> <mkdir dir="${tmp.lib}" />
<未定義 <コピー <ファイルセット--> <mkdir dir="${tmp.bin}" /> <mkdir dir="${tmp.web}/WEB-INF/lib" /> <delete dir="${tmp.web}/WEB-INF/classes" failonerror="false" /> <mkdir dir="${tmp.web}/WEB-INF/classes" /> </target> <target name="compilejava" depends="initdir"> <echo message="Compiling java code " /> <javac debug="true" debuglevel="${debuglevel}" destdir="${tmp.bin}" source="${source}" target="${target}" encoding="UTF-8"> <src path="${tmp.src}" /> <classpath refid="javaclass.path" /> </javac> <copy todir="${tmp.web}/WEB-INF/classes" includeemptydirs="false"> <fileset dir="${tmp.src}"> <exclude name="**/*.java" /> </fileset> </copy> <copy todir="${tmp.web}/WEB-INF/classes" includeemptydirs="false"> <fileset dir="${tmp.bin}"> <include name="**/*.class" /> </fileset> </copy> </target> <target name="compilejava-without-copy" depends="initdir"> <echo message="Compiling java code " /> <javac debug="true" debuglevel="${debuglevel}" destdir="${tmp.bin}" source="${source}" target="${target}" encoding="UTF-8"> <src path="${tmp.src}" /> <classpath refid="javaclass.path" /> </javac> </target> <target name="buildwar" depends="compilejava"> <echo message="Packing war file " /> <copy todir="${tmp.web}"> <fileset dir="${project.web}" excludes="**/.svn/**" /> </copy> <delete file="${project.war}" failonerror="false" /> <war destfile="${project.war}" basedir="${tmp.web}" webxml="${tmp.web}/WEB-INF/web.xml" encoding=& quot;utf-8" /> <delete dir="${tmp}" failonerror="false" /> <delete file="${output.dir}/${output.file}" failonerror="false" /> <move todir="${output.dir}" includeemptydirs="false" filtering="true"> <fileset dir="${project.build}"> <include name="**/*.war" /> </fileset> </move> <delete dir="${project.build}" failonerror="false" /> </target> <taskdef resource="checkstyletask.properties" classpath="${checkstyle.dir}/checkstyle-5.5-all.jar"/> <target name="checkstyle" description="Generates a report of code convention violations."> <checkstyle config="${checkstyle.dir}/my_check.xml" failureProperty="checkstyle.failure" failOnViolation="false"> <formatter type="xml" tofile="${checkstyle.dir}/checkstyle_report.xml" /> <fileset dir="${project.src}" includes="**/*.java" /> </checkstyle>
<未定義style in="checkstyle_report.xml" out="checkstyle_report.html" style="checkstyle.xsl" /--> </target> <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpathref ="findbugs.path"/> <target name="findbugs" depends="compilejava-without-copy" description="Check for code errors with Findbugs. "> <echo>Start checking for code errors with Findbugs</echo> <findbugs home="${findbugs.dir}" output="xml" outputFile="${findbugs.report.dir}/findbugs_report.xml" > <auxClasspath > <path refid="junit.test.lib.path" /> </auxClasspath>
<未定義auxClasspath path="${basedir}/lib/Regex.jar" /--> <sourcePath path="${tmp.src}" /> <class location="${tmp.bin}" /> </findbugs> <echo>Findbugs check code error complete </echo> <delete dir="${project.build}" failonerror="false" /> </target> <target name="junit-init" > <delete dir="${junit.class.dir}" failonerror="false" /> <mkdir dir="${junit.class.dir}" /> <delete dir="${junit.reports.dir}/result-xml" failonerror="false" /> <mkdir dir="${junit.reports.dir}/result-xml" /> <delete dir="${junit.reports.dir}/html" failonerror="false" /> <mkdir dir="${junit.reports.dir}/html" /> <delete dir="${junit.reports.dir}/html-result" failonerror="false" /> <mkdir dir="${junit.reports.dir}/html-result" /> </target> <target name="junit-compile" depends="junit-init"> <echo message="${project.web}/WEB-INF/lib"/> <javac srcdir="${project.src}" destdir="${junit.class.dir}" source="${source}" target="${target} " encoding="UTF-8"> <classpath refid="junit.test.lib.path" /> </javac> <javac srcdir="${junit.test.src}" destdir="${junit.class.dir}" source="${source}" target="${ target}" encoding="UTF-8"> <classpath refid="junit.test.lib.path" /> </javac> <copy todir="${junit.class.dir}"> <fileset dir="${junit.test.resources}"> <include name="**/*.xml" /> </fileset> </copy> <copy todir="${junit.class.dir}"> <fileset dir="${project.src}"> <include name="**/*.xml" /> </fileset> </copy> </target> <path id="junit.test.lib.path"> <pathelement path="${env.JBOSS_HOME}/server/all/lib/servlet-api.jar" /> <pathelement path="${env.JBOSS_HOME}/server/all/lib/jsp-api.jar" /> <pathelement path="${env.JBOSS_HOME}/server/all/lib/jboss-j2ee.jar" /> <fileset dir="${project.web}/WEB-INF/lib" includes="**/*.jar" /> <fileset dir="${project.lib}" includes="**/*.jar" /> </path> <target name="junit-test" depends="junit-compile"> <junit printsummary="yes"> <classpath>
<未定義Specify lib and class paths, class and jar declarations should not be mixed together --> <pathelement location="${junit.class.dir}" /> <path refid="junit.test.lib.path" /> </classpath> <batchtest todir="${junit.reports.dir}/result-xml"> <fileset dir="${junit.test.src}" includes="**/*TestCase.java" /> <formatter type="xml" /> </batchtest> </junit> <junitreport todir="${junit.reports.dir}/html-result">
<未定義Specify the XML of the test results, i.e. the XML generated in the previous step --> <fileset dir="${junit.reports.dir}/result-xml"> <include name="TEST-*.xml" /> </fileset>
<未定義Generate TESTS-TestSuites.xml from the test result XML, and the resulting HTML file --> <report format="frames" todir="${junit.reports.dir}/html" />
<未定義--> </junitreport> </target> </project>
記事出典:http://www.blogjava.net/paulwong/archive/2012/02/08/369617.html
関連
-
[解決済み】Jenkins:403 リクエストに有効なクラムが含まれていません。
-
[解決済み] ジェンキンスはシャットダウンする
-
[解決済み] Jenkinsです。Jenkins ファイルにコメントを追加できますか?
-
[解決済み] AnsibleとRundeckを連携させるのは良いアイデアですか、それともどちらか一方を使えば十分ですか?
-
[解決済み] ジェンキンス・マルチマスター
-
[解決済み] jenkinsのmultibranch pipelineにビルドパラメータを追加するには?
-
Jenkins java.io.IOException。CreateProcess error=2, The system could not find the specified file.
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
ハートビート・エフェクトのためのHTML+CSS
-
HTML ホテル フォームによるフィルタリング
-
HTML+cssのボックスモデル例(円、半円など)「border-radius」使いやすい
-
HTMLテーブルのテーブル分割とマージ(colspan, rowspan)
-
ランダム・ネームドロッパーを実装するためのhtmlサンプルコード
-
Html階層型ボックスシャドウ効果サンプルコード
-
QQの一時的なダイアログボックスをポップアップし、友人を追加せずにオンラインで話す効果を達成する方法
-
sublime / vscodeショートカットHTMLコード生成の実装
-
HTMLページを縮小した後にスクロールバーを表示するサンプルコード
-
html のリストボックス、テキストフィールド、ファイルフィールドのコード例