加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ssoClient.xml 2.26 KB
一键复制 编辑 原始数据 按行查看 历史
大丈夫没问题 提交于 2015-02-25 21:14 . 单点登录Client代码...
<?xml version="1.0" encoding="UTF-8" ?>
<project name="emchat_server" default="build" basedir=".">
<property name="src" value="${basedir}/src/main/java"/>
<property name="resources" value="${basedir}/src/main/resources"/>
<property name="dest" value="${basedir}/ssoClient"/>
<property name="jar_name" value="ssoClient.jar"/>
<property name="jar_path" value="${dest}/${jar_name}"/>
<property name="libs" value="${basedir}/lib"/>
<path id="ref" description="jar包路径">
<fileset dir="${libs}">
<include name="commons-lang3-3.3.2.jar"/>
<include name="hessian-4.0.38.jar"/>
<include name="slf4j-api-1.7.7.jar"/>
<include name="migbase64-2.2.jar"/>
<include name="servlet-api.jar"/>
</fileset>
</path>
<target name="clean">
<delete dir="${dest}"/>
<delete file="${jar_path}"/>
</target>
<target name="init" depends="clean">
<mkdir dir="${dest}"/>
</target>
<target name="compile" depends="init">
<javac srcdir="${src}"
destdir="${dest}"
includeantruntime="on"
encoding="utf8"
debug="on">
<include name="com/jthinker/base/constant/**"/>
<include name="com/jthinker/bean/**"/>
<include name="com/jthinker/client/**"/>
<include name="com/jthinker/service/TicketService.java"/>
<classpath refid="ref">
</classpath>
</javac>
<copy todir="${dest}">
<fileset dir="${resources}">
<include name="sso.properties"/>
</fileset>
</copy>
</target>
<target name="build" depends="compile">
<jar jarfile="${jar_path}" basedir="${dest}" includes="**/*.*">
</jar>
<!--
&lt;!&ndash; 清空dest文件夹 &ndash;&gt;
<delete includeEmptyDirs="true">
<fileset dir="${dest}" includes="**/*" defaultexcludes="no"/>
</delete>
<copy todir="${dest}/libs">
<fileset dir="${libs}">
<include name="**/*.jar"/>
</fileset>
</copy>
<move todir="${dest}">
<file file="${jar_path}"></file>
</move>
-->
</target>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化