1 Star 1 Fork 0

Area / locaManagement

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
module_locamanagement.xml 4.71 KB
一键复制 编辑 原始数据 按行查看 历史
Area 提交于 2020-11-19 14:25 . upload first code
<?xml version="1.0" encoding="UTF-8"?>
<project name="module_locamanagement" default="compile.module.locamanagement">
<dirname property="module.locamanagement.basedir" file="${ant.file.module_locamanagement}"/>
<property name="module.jdk.home.locamanagement" value="${project.jdk.home}"/>
<property name="module.jdk.bin.locamanagement" value="${project.jdk.bin}"/>
<property name="module.jdk.classpath.locamanagement" value="${project.jdk.classpath}"/>
<property name="compiler.args.locamanagement" value="-encoding UTF-8 -source 5 -target 1.5 ${compiler.args}"/>
<property name="locamanagement.output.dir" value="${module.locamanagement.basedir}/target/classes"/>
<property name="locamanagement.testoutput.dir" value="${module.locamanagement.basedir}/target/test-classes"/>
<path id="locamanagement.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="locamanagement.module.production.classpath">
<path refid="${module.jdk.classpath.locamanagement}"/>
</path>
<path id="locamanagement.runtime.production.module.classpath">
<pathelement location="${locamanagement.output.dir}"/>
</path>
<path id="locamanagement.module.classpath">
<path refid="${module.jdk.classpath.locamanagement}"/>
<pathelement location="${locamanagement.output.dir}"/>
</path>
<path id="locamanagement.runtime.module.classpath">
<pathelement location="${locamanagement.testoutput.dir}"/>
<pathelement location="${locamanagement.output.dir}"/>
</path>
<patternset id="excluded.from.module.locamanagement">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.locamanagement">
<patternset refid="excluded.from.module.locamanagement"/>
</patternset>
<path id="locamanagement.module.sourcepath">
<dirset dir="${module.locamanagement.basedir}">
<include name="src/main/java"/>
<include name="src/main/resources"/>
</dirset>
</path>
<path id="locamanagement.module.test.sourcepath">
<dirset dir="${module.locamanagement.basedir}">
<include name="src/test/java"/>
</dirset>
</path>
<target name="compile.module.locamanagement" depends="compile.module.locamanagement.production,compile.module.locamanagement.tests" description="Compile module locaManagement"/>
<target name="compile.module.locamanagement.production" depends="register.custom.compilers" description="Compile module locaManagement; production classes">
<mkdir dir="${locamanagement.output.dir}"/>
<javac2 destdir="${locamanagement.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" executable="${module.jdk.bin.locamanagement}/javac">
<compilerarg line="${compiler.args.locamanagement}"/>
<bootclasspath refid="locamanagement.module.bootclasspath"/>
<classpath refid="locamanagement.module.production.classpath"/>
<src refid="locamanagement.module.sourcepath"/>
<patternset refid="excluded.from.compilation.locamanagement"/>
</javac2>
<copy todir="${locamanagement.output.dir}">
<fileset dir="${module.locamanagement.basedir}/src/main/java">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
<fileset dir="${module.locamanagement.basedir}/src/main/resources">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="compile.module.locamanagement.tests" depends="register.custom.compilers,compile.module.locamanagement.production" description="compile module locaManagement; test classes" unless="skip.tests">
<mkdir dir="${locamanagement.testoutput.dir}"/>
<javac2 destdir="${locamanagement.testoutput.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" executable="${module.jdk.bin.locamanagement}/javac">
<compilerarg line="${compiler.args.locamanagement}"/>
<bootclasspath refid="locamanagement.module.bootclasspath"/>
<classpath refid="locamanagement.module.classpath"/>
<src refid="locamanagement.module.test.sourcepath"/>
<patternset refid="excluded.from.compilation.locamanagement"/>
</javac2>
<copy todir="${locamanagement.testoutput.dir}">
<fileset dir="${module.locamanagement.basedir}/src/test/java">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="clean.module.locamanagement" description="cleanup module">
<delete dir="${locamanagement.output.dir}"/>
<delete dir="${locamanagement.testoutput.dir}"/>
</target>
</project>
1
https://gitee.com/DarkMoon4CN/locaManagement.git
git@gitee.com:DarkMoon4CN/locaManagement.git
DarkMoon4CN
locaManagement
locaManagement
master

搜索帮助