1 Star 0 Fork 6

XoYoKing/WonderfulWeather

forked from Kevin/WonderfulWeather 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
wonderfulweather.xml 3.99 KB
一键复制 编辑 原始数据 按行查看 历史
Kevin 提交于 2014-12-31 14:18 . 添加五日天气,定位等功能
<?xml version="1.0" encoding="UTF-8"?>
<project name="wonderfulweather" default="all">
<property file="wonderfulweather.properties"/>
<!-- Uncomment the following property if no tests compilation is needed -->
<!--
<property name="skip.tests" value="true"/>
-->
<!-- Compiler options -->
<property name="compiler.debug" value="on"/>
<property name="compiler.generate.no.warnings" value="off"/>
<property name="compiler.args" value=""/>
<property name="compiler.max.memory" value="700m"/>
<patternset id="ignored.files">
<exclude name="**/CVS/**"/>
<exclude name="**/SCCS/**"/>
<exclude name="**/RCS/**"/>
<exclude name="**/rcs/**"/>
<exclude name="**/.DS_Store/**"/>
<exclude name="**/.svn/**"/>
<exclude name="**/.pyc/**"/>
<exclude name="**/.pyo/**"/>
<exclude name="**/*.pyc/**"/>
<exclude name="**/*.pyo/**"/>
<exclude name="**/.git/**"/>
<exclude name="**/*.hprof/**"/>
<exclude name="**/_svn/**"/>
<exclude name="**/.hg/**"/>
<exclude name="**/*.lib/**"/>
<exclude name="**/*~/**"/>
<exclude name="**/__pycache__/**"/>
<exclude name="**/.bundle/**"/>
<exclude name="**/*.rbc/**"/>
<exclude name="**/vssver.scc/**"/>
<exclude name="**/vssver2.scc/**"/>
</patternset>
<patternset id="library.patterns">
<include name="*.war"/>
<include name="*.ear"/>
<include name="*.apk"/>
<include name="*.zip"/>
<include name="*.swc"/>
<include name="*.ane"/>
<include name="*.egg"/>
<include name="*.jar"/>
</patternset>
<patternset id="compiler.resources">
<exclude name="**/?*.java"/>
<exclude name="**/?*.form"/>
<exclude name="**/?*.class"/>
<exclude name="**/?*.groovy"/>
<exclude name="**/?*.scala"/>
<exclude name="**/?*.flex"/>
<exclude name="**/?*.kt"/>
<exclude name="**/?*.clj"/>
</patternset>
<!-- JDK definitions -->
<property name="jdk.bin.android_api_18_platform" value="${jdk.home.android_api_18_platform}/../../Program Files/Java/jdk1.8.0_25/bin"/>
<path id="jdk.classpath.android_api_18_platform">
<fileset dir="${jdk.home.android_api_18_platform}">
<include name="platforms/android-18/android.jar"/>
<include name="platforms/android-18/data/res"/>
<include name="tools/support/annotations.jar"/>
</fileset>
</path>
<property name="project.jdk.home" value="${jdk.home.android_api_18_platform}"/>
<property name="project.jdk.bin" value="${jdk.bin.android_api_18_platform}"/>
<property name="project.jdk.classpath" value="jdk.classpath.android_api_18_platform"/>
<!-- Project Libraries -->
<path id="library.android-support-v4.classpath">
<pathelement location="${basedir}/libs/android-support-v4.jar"/>
</path>
<path id="library.baidulbs_android.classpath">
<pathelement location="${basedir}/libs/BaiduLBS_Android.jar"/>
</path>
<!-- Register Custom Compiler Taskdefs -->
<property name="javac2.home" value="${idea.home}/lib"/>
<path id="javac2.classpath">
<pathelement location="${javac2.home}/javac2.jar"/>
<pathelement location="${javac2.home}/jdom.jar"/>
<pathelement location="${javac2.home}/asm-all.jar"/>
<pathelement location="${javac2.home}/jgoodies-forms.jar"/>
</path>
<target name="register.custom.compilers">
<taskdef name="javac2" classname="com.intellij.ant.Javac2" classpathref="javac2.classpath"/>
<taskdef name="instrumentIdeaExtensions" classname="com.intellij.ant.InstrumentIdeaExtensions" classpathref="javac2.classpath"/>
</target>
<!-- Modules -->
<import file="${basedir}/module_wonderfulweather.xml"/>
<target name="init" description="Build initialization">
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.wonderfulweather" description="cleanup all"/>
<target name="build.modules" depends="init, clean, compile.module.wonderfulweather" description="build all modules"/>
<target name="all" depends="build.modules" description="build all"/>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/XoYoKing/WonderfulWeather.git
git@gitee.com:XoYoKing/WonderfulWeather.git
XoYoKing
WonderfulWeather
WonderfulWeather
master

搜索帮助