-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-fork-tutorial.xml
More file actions
159 lines (127 loc) · 6.27 KB
/
git-fork-tutorial.xml
File metadata and controls
159 lines (127 loc) · 6.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?xml version="1.0" encoding="UTF-8"?>
<project name="git-fork-tutorial" default="all">
<property file="git-fork-tutorial.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="**/*.hprof/**"/>
<exclude name="**/*.pyc/**"/>
<exclude name="**/*.pyo/**"/>
<exclude name="**/*.rbc/**"/>
<exclude name="**/*.yarb/**"/>
<exclude name="**/*~/**"/>
<exclude name="**/.DS_Store/**"/>
<exclude name="**/.git/**"/>
<exclude name="**/.hg/**"/>
<exclude name="**/.svn/**"/>
<exclude name="**/CVS/**"/>
<exclude name="**/__pycache__/**"/>
<exclude name="**/_svn/**"/>
<exclude name="**/vssver.scc/**"/>
<exclude name="**/vssver2.scc/**"/>
</patternset>
<patternset id="library.patterns">
<include name="*.war"/>
<include name="*.swc"/>
<include name="*.zip"/>
<include name="*.egg"/>
<include name="*.ane"/>
<include name="*.jar"/>
<include name="*.ear"/>
</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"/>
<exclude name="**/?*.aj"/>
</patternset>
<!-- JDK definitions -->
<property name="jdk.bin.1.8" value="${jdk.home.1.8}/bin"/>
<path id="jdk.classpath.1.8">
<fileset dir="${jdk.home.1.8}">
<include name="../java-1.8.0-openjdk/jre/lib/charsets.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/ext/cldrdata.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/ext/dnsns.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/ext/jaccess.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/ext/localedata.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/ext/nashorn.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/ext/sunec.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/ext/sunjce_provider.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/ext/sunpkcs11.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/ext/zipfs.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/jce.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/jsse.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/management-agent.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/resources.jar"/>
<include name="../java-1.8.0-openjdk/jre/lib/rt.jar"/>
</fileset>
</path>
<property name="project.jdk.home" value="${jdk.home.1.8}"/>
<property name="project.jdk.bin" value="${jdk.bin.1.8}"/>
<property name="project.jdk.classpath" value="jdk.classpath.1.8"/>
<!-- Register Custom Compiler Taskdefs -->
<property name="javac2.home" value="${idea.home}/lib"/>
<path id="javac2.classpath">
<fileset dir="${javac2.home}">
<include name="javac2.jar"/>
<include name="jdom.jar"/>
<include name="asm-all*.jar"/>
<include name="forms-*.jar"/>
</fileset>
</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 -->
<!-- Module git-fork-tutorial -->
<dirname property="module.git-fork-tutorial.basedir" file="${ant.file}"/>
<property name="module.jdk.home.git-fork-tutorial" value="${project.jdk.home}"/>
<property name="module.jdk.bin.git-fork-tutorial" value="${project.jdk.bin}"/>
<property name="module.jdk.classpath.git-fork-tutorial" value="${project.jdk.classpath}"/>
<property name="compiler.args.git-fork-tutorial" value="-encoding UTF-8 -source 10 -target 10 ${compiler.args}"/>
<property name="git-fork-tutorial.output.dir" value="undefined"/>
<property name="git-fork-tutorial.testoutput.dir" value="undefined"/>
<path id="git-fork-tutorial.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="git-fork-tutorial.module.production.classpath">
<path refid="${module.jdk.classpath.git-fork-tutorial}"/>
</path>
<path id="git-fork-tutorial.runtime.production.module.classpath"/>
<path id="git-fork-tutorial.module.classpath">
<path refid="${module.jdk.classpath.git-fork-tutorial}"/>
</path>
<path id="git-fork-tutorial.runtime.module.classpath"/>
<patternset id="excluded.from.module.git-fork-tutorial">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.git-fork-tutorial">
<patternset refid="excluded.from.module.git-fork-tutorial"/>
</patternset>
<target name="compile.module.git-fork-tutorial" depends="compile.module.git-fork-tutorial.production,compile.module.git-fork-tutorial.tests" description="Compile module git-fork-tutorial"/>
<target name="compile.module.git-fork-tutorial.production" depends="register.custom.compilers" description="Compile module git-fork-tutorial; production classes"/>
<target name="compile.module.git-fork-tutorial.tests" depends="register.custom.compilers,compile.module.git-fork-tutorial.production" description="compile module git-fork-tutorial; test classes" unless="skip.tests"/>
<target name="clean.module.git-fork-tutorial" description="cleanup module">
<delete dir="${git-fork-tutorial.output.dir}"/>
<delete dir="${git-fork-tutorial.testoutput.dir}"/>
</target>
<target name="init" description="Build initialization">
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.git-fork-tutorial" description="cleanup all"/>
<target name="build.modules" depends="init, clean, compile.module.git-fork-tutorial" description="build all modules"/>
<target name="all" depends="build.modules" description="build all"/>
</project>