forked from battlecode/battlecode24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
222 lines (172 loc) · 6.93 KB
/
build.gradle
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
apply plugin: 'java'
apply plugin: 'maven-publish'
import java.nio.file.*
sourceCompatibility = 1.8
if(JavaVersion.current() != JavaVersion.VERSION_1_8) {
throw new GradleException("The engine must be run using the Java 8 JDK")
}
// Avoid weird configuration-time dependency bugs
// Fun fact: this line of code single-handedly fixed an error I spent two hours debugging.
evaluationDependsOnChildren()
configurations {
scala
engine {
transitive false
}
bots {
transitive false
}
}
repositories {
mavenCentral()
}
dependencies {
scala group: 'org.scala-lang', name: 'scala-library', version: '2.11.7'
scala group: 'org.scala-lang', name: 'scala-compiler', version: '2.11.7'
scala group: 'org.scala-lang', name: 'scala-reflect', version: '2.11.7'
engine project(":engine")
bots project(":example-bots")
}
def serverJar = configurations.engine.singleFile
task buildMap(type: JavaExec, dependsOn: [':engine:build']) {
mainClass = 'battlecode.world.maps.' + project.property('buildMap')
classpath = files(serverJar)
}
task buildMaps(type: JavaExec, dependsOn: [':engine:build']) {
mainClass = 'battlecode.world.BuildMaps'
classpath = files(serverJar)
}
def defaultClassLocation = project(':example-bots').sourceSets.main.output.classesDirs.getAsPath()
def defaultReplay = 'matches/' + project.property('teamA') + '-vs-' + project.property('teamB') + '-on-' + project.property('maps') + new Date().format('yyyyMMddHHmmss') + '.bc24'
task headless(type: JavaExec, dependsOn: [':engine:build', ':example-bots:build']) {
mainClass = 'battlecode.server.Main'
classpath = files(serverJar) + project(':example-bots').sourceSets.main.output + configurations.scala
args = ['-c=-']
jvmArgs = [
'-Dbc.server.wait-for-client=' + (project.findProperty('waitForClient') ?: 'false'),
'-Dbc.server.mode=headless',
'-Dbc.server.map-path=maps',
'-Dbc.server.robot-player-to-system-out=' + (project.findProperty('outputVerbose') ?: 'true'),
'-Dbc.server.debug=' + (project.findProperty('debug') ?: 'false'),
'-Dbc.engine.debug-methods=' + (project.findProperty('debug') ?: 'false'),
'-Dbc.engine.enable-profiler=' + (project.findProperty('enableProfiler') ?: 'false'),
'-Dbc.engine.show-indicators=' + (project.findProperty('showIndicators') ?: 'true'),
'-Dbc.game.team-a=' + project.property('teamA'),
'-Dbc.game.team-b=' + project.property('teamB'),
'-Dbc.game.team-a.url=' + (project.findProperty('classLocationA') ?: defaultClassLocation),
'-Dbc.game.team-b.url=' + (project.findProperty('classLocationB') ?: defaultClassLocation),
'-Dbc.game.team-a.package=' + (project.findProperty('packageNameA') ?: project.property('teamA')),
'-Dbc.game.team-b.package=' + (project.findProperty('packageNameB') ?: project.property('teamB')),
'-Dbc.game.maps=' + project.property('maps'),
'-Dbc.server.validate-maps=' + project.property('validateMaps'),
'-Dbc.server.alternate-order=' + project.property('alternateOrder'),
'-Dbc.server.save-file=' + (project.findProperty('replay') ?: defaultReplay),
]
}
// keep the client happy because it references this step
task unpackClient() {}
task run(dependsOn: ['headless', 'unpackClient']) {}
task runClient {
doLast {
exec {
commandLine 'npm', 'install'
workingDir 'client/visualizer'
}
exec {
commandLine 'npm', 'run', 'watch'
workingDir 'client/visualizer'
}
}
}
task release(dependsOn: ['release_main', 'release_docs', 'release_sources'])
task release_main(type: Jar, dependsOn: [':engine:build']) {
File f_version = new File(project.projectDir, "battlecode_version");
doFirst {
if (!project.hasProperty("release_version"))
throw new InvalidUserDataException("Must provide property \"release_version\"")
Files.write(f_version.toPath(), [project.property("release_version")]);
}
archiveBaseName = "battlecode";
if (project.hasProperty("release_version"))
archiveVersion = project.property("release_version");
destinationDirectory = project.projectDir;
FileCollection src = files(f_version);
src += zipTree(serverJar);
from src;
doLast {
Files.delete(f_version.toPath())
}
}
task release_docs(type: Jar, dependsOn: [':engine:javadoc']) {
doFirst {
if (!project.hasProperty("release_version") || project.property("release_version") == "unspecified")
throw new InvalidUserDataException("Must provide property \"release_version\"")
}
archiveBaseName = "battlecode-javadoc"
if (project.hasProperty("release_version"))
archiveVersion = project.property("release_version");
destinationDirectory = project.projectDir;
from new File(project(":engine").docsDir, "javadoc")
}
task release_sources(type: Jar, dependsOn: classes) {
archiveBaseName = "battlecode-source"
if (project.hasProperty("release_version"))
archiveVersion = project.property("release_version");
destinationDirectory = project.projectDir;
from project(":engine").sourceSets.main.allSource
}
def clientDirPrefix = 'client/artifacts/client-'
publishing {
publications {
server(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode24'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact release_main
artifact release_docs {
classifier 'javadoc'
}
artifact release_sources {
classifier 'sources'
}
}
// Tauri
clientWinTauri(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode24-client-win-tauri'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact (clientDirPrefix + 'windows/tauri-output.zip')
}
clientMacTauri(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode24-client-mac-tauri'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact (clientDirPrefix + 'macos/tauri-output.zip')
}
clientLinuxTauri(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode24-client-linux-tauri'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact (clientDirPrefix + 'linux/tauri-output.zip')
}
// Electron
clientWinElectron(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode24-client-win-electron'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact (clientDirPrefix + 'windows/electron-output.zip')
}
clientMacElectron(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode24-client-mac-electron'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact (clientDirPrefix + 'macos/electron-output.zip')
}
clientLinuxElectron(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode24-client-linux-electron'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact (clientDirPrefix + 'linux/electron-output.zip')
}
}
}