-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
221 lines (173 loc) · 6.35 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
apply plugin: 'java'
apply plugin: 'maven-publish'
import java.nio.file.*
sourceCompatibility = 1.8
// 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') + '.bc22'
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.save-file=' + (project.findProperty('replay') ?: defaultReplay),
]
}
task run(dependsOn: ['headless']) {}
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'])
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"))
version = 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"))
version = project.property("release_version");
destinationDirectory = project.projectDir;
from new File(project(":engine").docsDir, "javadoc")
}
task prodClient {
doLast {
exec {
commandLine 'npm', 'install'
workingDir 'client'
}
exec {
commandLine 'npm', 'run', 'prod-electron'
workingDir 'client'
}
}
}
task releaseClientWin(type: Zip, dependsOn: ['prodClient']) {
from fileTree('client/dist/win-unpacked')
}
task releaseClientMac(type: Zip, dependsOn: ['prodClient']) {
from fileTree('client/dist/mac')
}
task releaseClientLinux(type: Zip, dependsOn: ['prodClient']) {
from fileTree('client/dist/linux-unpacked')
}
task releaseClientWin32(type: Zip, dependsOn: ['prodClient']) {
from fileTree('client/dist/win-ia32-unpacked')
}
task releaseClientLinux32(type: Zip, dependsOn: ['prodClient']) {
from fileTree('client/dist/linux-ia32-unpacked')
}
publishing {
publications {
server(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode22'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact release_main
artifact release_docs {
classifier 'javadoc'
}
}
clientWin(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode22-client-win'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact releaseClientWin
}
clientMac(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode22-client-mac'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact releaseClientMac
}
clientLinux(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode22-client-linux'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact releaseClientLinux
}
clientWin32(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode22-client-win-32'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact releaseClientWin32
}
clientLinux32(MavenPublication) {
groupId 'org.battlecode'
artifactId 'battlecode22-client-linux-32'
version project.findProperty('release_version') ?: 'NONSENSE'
artifact releaseClientLinux32
}
}
}