-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild-jre.xml
166 lines (141 loc) · 7.06 KB
/
Build-jre.xml
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
165
166
<!--
~ Copyright (c) 2019. http://devonline.academy
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
-->
<project name="Build JRE for tic-tac-toe game" default="build-jre" basedir=".">
<!-- ******************************* SCRIPT CONFIGS ******************************* -->
<!-- JPMS modules -->
<property name="java.modules"
value="java.base,java.desktop"/>
<!-- Target directories -->
<property name="target-tmp-dir"
value=".tmp"/>
<property name="jre-windows-dir-name"
value="jre-windows"/>
<property name="jre-macos-dir-name"
value="jre-macos"/>
<property name="jre-linux-dir-name"
value="jre-linux"/>
<!-- JDK download links -->
<property name="jdk-windows-download-link"
value="https://download.java.net/java/GA/jdk12.0.2/e482c34c86bd4bf8b56c0b35558996b9/10/GPL/openjdk-12.0.2_windows-x64_bin.zip"/>
<property name="jdk-macos-download-link"
value="https://download.java.net/java/GA/jdk12.0.2/e482c34c86bd4bf8b56c0b35558996b9/10/GPL/openjdk-12.0.2_osx-x64_bin.tar.gz"/>
<property name="jdk-linux-download-link"
value="https://download.java.net/java/GA/jdk12.0.2/e482c34c86bd4bf8b56c0b35558996b9/10/GPL/openjdk-12.0.2_linux-x64_bin.tar.gz"/>
<property environment="env"/>
<!-- *************************************** TARGETS *************************************** -->
<target name="build-jre"
depends="build-windows-jre, build-macos-jre, build-linux-jre"/>
<target name="init">
<mkdir dir="${target-tmp-dir}"/>
<mkdir dir="${target-tmp-dir}/jdk"/>
</target>
<!-- *********************************** FOR WINDOWS PLATFORM *********************************** -->
<condition property="isCurrentWindows">
<os family="windows"/>
</condition>
<condition property="isWindowsJreBuilt">
<available file="${target-tmp-dir}/${jre-windows-dir-name}/bin/java.exe"/>
</condition>
<target name="build-windows-jre" depends="init" unless="isWindowsJreBuilt">
<antcall target="build-windows-jre-if-windows"/>
<antcall target="build-windows-jre-if-not-windows"/>
</target>
<target name="build-windows-jre-if-windows" if="isCurrentWindows">
<build-jre modulePath="${env.JAVA_HOME}/jmods/" destDir="jre-windows"/>
</target>
<target name="build-windows-jre-if-not-windows" unless="isCurrentWindows">
<antcall target="download-windows-jdk"/>
<build-jre modulePath="${target-tmp-dir}/jdk/jdk-windows/jdk-11.0.2/jmods"
destDir="jre-windows"/>
</target>
<target name="download-windows-jdk">
<echo level="info"
message="Download JDK using '${jdk-windows-download-link}' link"/>
<get src="${jdk-windows-download-link}" dest="${target-tmp-dir}/jdk/jdk-windows.zip" skipexisting="true"/>
<unzip src="${target-tmp-dir}/jdk/jdk-windows.zip" dest="${target-tmp-dir}/jdk/jdk-windows"/>
</target>
<!-- *********************************** FOR MACOS PLATFORM *********************************** -->
<condition property="isCurrentMacos">
<os family="mac"/>
</condition>
<condition property="isMacosJreBuilt">
<available file="${target-tmp-dir}/${jre-macos-dir-name}/bin/java"/>
</condition>
<target name="build-macos-jre" depends="init" unless="isMacosJreBuilt">
<antcall target="build-macos-jre-if-macos"/>
<antcall target="build-macos-jre-if-not-macos"/>
</target>
<target name="build-macos-jre-if-macos" if="isCurrentMacos">
<build-jre modulePath="${env.JAVA_HOME}/jmods/" destDir="${jre-macos-dir-name}"/>
</target>
<target name="build-macos-jre-if-not-macos" unless="isCurrentMacos">
<antcall target="download-macos-jdk"/>
<build-jre modulePath="${target-tmp-dir}/jdk/jdk-macos/jdk-11.0.2.jdk/Contents/Home/jmods"
destDir="${jre-macos-dir-name}"/>
</target>
<target name="download-macos-jdk">
<echo level="info"
message="Download JDK using '${jdk-macos-download-link}' link"/>
<get src="${jdk-macos-download-link}" dest="${target-tmp-dir}/jdk/jdk-macos.tar.gz" skipexisting="true"/>
<untar src="${target-tmp-dir}/jdk/jdk-macos.tar.gz" dest="${target-tmp-dir}/jdk/jdk-macos" compression="gzip"/>
</target>
<!-- *********************************** FOR LINUX PLATFORM *********************************** -->
<condition property="isCurrentLinux">
<and>
<os family="unix"/>
<not>
<os family="macos"/>
</not>
</and>
</condition>
<condition property="isLinuxJreBuilt">
<available file="${target-tmp-dir}/${jre-linux-dir-name}/bin/java"/>
</condition>
<target name="build-linux-jre" depends="init" unless="isLinuxJreBuilt">
<antcall target="build-linux-jre-if-linux"/>
<antcall target="build-linux-jre-if-not-linux"/>
</target>
<target name="build-linux-jre-if-linux" if="isCurrentLinux">
<build-jre modulePath="${env.JAVA_HOME}/jmods/" destDir="${jre-linux-dir-name}"/>
</target>
<target name="build-linux-jre-if-not-linux" unless="isCurrentLinux">
<antcall target="download-linux-jdk"/>
<build-jre modulePath="${target-tmp-dir}/jdk/jdk-linux/jdk-11.0.2/jmods"
destDir="${jre-linux-dir-name}"/>
</target>
<target name="download-linux-jdk">
<echo level="info"
message="Download JDK using '${jdk-linux-download-link}' link"/>
<get src="${jdk-linux-download-link}" dest="${target-tmp-dir}/jdk/jdk-linux.tar.gz" skipexisting="true"/>
<untar src="${target-tmp-dir}/jdk/jdk-linux.tar.gz" dest="${target-tmp-dir}/jdk/jdk-linux" compression="gzip"/>
</target>
<!-- ********************************* MACRO DEFINITIONS ************************************* -->
<macrodef name="build-jre">
<attribute name="destDir"/>
<attribute name="modulePath"/>
<sequential>
<echo level="info"
message="Build JRE using '@{modulePath}' module path into '${target-tmp-dir}/@{destDir}' directory"/>
<exec executable="${env.JAVA_HOME}/bin/jlink" failonerror="true">
<arg line='--add-modules "${java.modules}"'/>
<arg line='--module-path "@{modulePath}"'/>
<arg line='--output ${target-tmp-dir}/@{destDir}'/>
<arg line='--no-header-files --no-man-pages --compress 2'/>
</exec>
</sequential>
</macrodef>
</project>