加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.xml 2.81 KB
一键复制 编辑 原始数据 按行查看 历史
gaoy 提交于 2018-09-06 11:37 . 优化
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_jar" name="auto-code">
<property name="src.dir" value="src"/>
<property name="build.dir" value="target"/>
<property name="classes.dir" value="classes"/>
<property name="jar.dir" value="${build.dir}/jar"/>
<property name="lib.dir" value="lib"/>
<property name="template.dir" value="template"/>
<property name="template-springboot.dir" value="template-springboot"/>
<property name="template-vue-manage.dir" value="template-vue-manage"/>
<property name="jar_name" value="auto-code"/>
<property name="start_class" value="com.foruo.code.main.Run"/>
<path id="application" location="${jar.dir}/${jar_name}.jar"/>
<path id="lib_path">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>
<target name="clean" description="清除构建">
<delete dir="${build.dir}"/>
</target>
<!--
编译系统有intellij处理-->
<target name="compile" description="编译系统">
<mkdir dir="${classes.dir}"/>
<javac srcdir="src" destdir="${classes.dir}" encoding="UTF-8" classpathref="lib_path"/>
</target>
<!-- end -->
<target name="resource" description="初始化资源文件">
<mkdir dir="${build.dir}"/>
<mkdir dir="${build.dir}\jar"/>
<copydir dest="${build.dir}\lib" src="${lib.dir}"/>
<copydir dest="${build.dir}\jar\template" src="template"/>
<copydir dest="${build.dir}\jar\template-springboot" src="${template-springboot.dir}"/>
<copydir dest="${build.dir}\jar\template-vue-manage" src="${template-vue-manage.dir}"/>
<copy todir="${build.dir}\jar" file="start.bat"/>
</target>
<target name="create_jar" depends="clean,resource,compile" description="打包">
<pathconvert property="mf.classpath" pathsep=" ">
<mapper>
<chainedmapper>
<!-- 移除绝对路径 -->
<flattenmapper />
<!-- 加上lib前缀 -->
<globmapper from="*" to="../lib/*" />
</chainedmapper>
</mapper>
<fileset dir="${lib.dir}">
<include name="*.jar" />
</fileset>
</pathconvert>
<jar destfile="${jar.dir}/${jar_name}.jar" basedir="${classes.dir}">
<manifest>
<attribute name="Main-Class" value="${start_class}"/>
<attribute name="Class-Path" value="${mf.classpath} "/>
</manifest>
</jar>
</target>
<target name="run" depends="create_jar" description="运行">
<java fork="true" classname="${start_class}">
<classpath>
<path refid="lib_path"/>
<path refid="application"/>
</classpath>
</java>
</target>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化