-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpujam.xml
More file actions
164 lines (130 loc) · 6.64 KB
/
pujam.xml
File metadata and controls
164 lines (130 loc) · 6.64 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
160
161
162
163
164
<?xml version="1.0" encoding="UTF-8"?>
<project name="pujam" default="all">
<property file="pujam.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="project.jdk.home" value="${jdk.home.python_2.7.12_(/usr/bin/python2.7)}"/>
<property name="project.jdk.bin" value="${jdk.bin.python_2.7.12_(/usr/bin/python2.7)}"/>
<property name="project.jdk.classpath" value="jdk.classpath.python_2.7.12_(/usr/bin/python2.7)"/>
<!-- Global Libraries -->
<path id="library.python_2.7.12_(/usr/bin/python2.7)_interpreter_library.classpath">
<pathelement location="/home/robin/.IdeaIC2017.2/config/plugins/python-ce/helpers/python-skeletons"/>
<pathelement location="/home/robin/.IdeaIC2017.2/config/plugins/python-ce/helpers/typeshed/stdlib/2"/>
<pathelement location="/home/robin/.IdeaIC2017.2/config/plugins/python-ce/helpers/typeshed/stdlib/2and3"/>
<pathelement location="/home/robin/.IdeaIC2017.2/config/plugins/python-ce/helpers/typeshed/third_party/2"/>
<pathelement location="/home/robin/.IdeaIC2017.2/config/plugins/python-ce/helpers/typeshed/third_party/2and3"/>
<pathelement location="/home/robin/.IdeaIC2017.2/system/python_stubs/-1247972723"/>
<pathelement location="/home/robin/.local/lib/python2.7/site-packages"/>
<pathelement location="/usr/lib/python2.7"/>
<pathelement location="/usr/lib/python2.7/dist-packages"/>
<pathelement location="/usr/lib/python2.7/dist-packages/gtk-2.0"/>
<pathelement location="/usr/lib/python2.7/dist-packages/wx-3.0-gtk2"/>
<pathelement location="/usr/lib/python2.7/lib-dynload"/>
<pathelement location="/usr/lib/python2.7/lib-tk"/>
<pathelement location="/usr/lib/python2.7/plat-x86_64-linux-gnu"/>
<pathelement location="/usr/local/lib/python2.7/dist-packages"/>
<pathelement location="/usr/local/lib/python2.7/dist-packages/setuptools-28.8.0-py2.7.egg"/>
</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 -->
<!-- Module pujam -->
<dirname property="module.pujam.basedir" file="${ant.file}"/>
<property name="module.jdk.home.pujam" value="${project.jdk.home}"/>
<property name="module.jdk.bin.pujam" value="${project.jdk.bin}"/>
<property name="module.jdk.classpath.pujam" value="${project.jdk.classpath}"/>
<property name="compiler.args.pujam" value="-encoding UTF-8 -source 9 -target 9 ${compiler.args}"/>
<property name="pujam.output.dir" value="undefined"/>
<property name="pujam.testoutput.dir" value="undefined"/>
<path id="pujam.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="pujam.module.production.classpath">
<path refid="${module.jdk.classpath.pujam}"/>
<path refid="library.python_2.7.12_(/usr/bin/python2.7)_interpreter_library.classpath"/>
</path>
<path id="pujam.runtime.production.module.classpath">
<path refid="library.python_2.7.12_(/usr/bin/python2.7)_interpreter_library.classpath"/>
</path>
<path id="pujam.module.classpath">
<path refid="${module.jdk.classpath.pujam}"/>
<path refid="library.python_2.7.12_(/usr/bin/python2.7)_interpreter_library.classpath"/>
</path>
<path id="pujam.runtime.module.classpath">
<path refid="library.python_2.7.12_(/usr/bin/python2.7)_interpreter_library.classpath"/>
</path>
<patternset id="excluded.from.module.pujam">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.pujam">
<patternset refid="excluded.from.module.pujam"/>
</patternset>
<target name="compile.module.pujam" depends="compile.module.pujam.production,compile.module.pujam.tests" description="Compile module pujam"/>
<target name="compile.module.pujam.production" depends="register.custom.compilers" description="Compile module pujam; production classes"/>
<target name="compile.module.pujam.tests" depends="register.custom.compilers,compile.module.pujam.production" description="compile module pujam; test classes" unless="skip.tests"/>
<target name="clean.module.pujam" description="cleanup module">
<delete dir="${pujam.output.dir}"/>
<delete dir="${pujam.testoutput.dir}"/>
</target>
<target name="init" description="Build initialization">
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.pujam" description="cleanup all"/>
<target name="build.modules" depends="init, clean, compile.module.pujam" description="build all modules"/>
<target name="all" depends="build.modules" description="build all"/>
</project>