-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (29 loc) · 931 Bytes
/
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
group 'com.witkups.carloading'
version '1.0'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
task validate(type: JavaExec) {
classpath sourceSets.main.runtimeClasspath
main = "com.witkups.carloading.SolutionVerifier"
if (project.hasProperty("instance") && project.hasProperty("solution")) {
args = ["$instance", "$solution"]
}
}
task construct(type: JavaExec) {
classpath sourceSets.main.runtimeClasspath
main = "com.witkups.carloading.SolutionConstructor"
standardInput = System.in
}
task optimize(type: JavaExec) {
classpath sourceSets.main.runtimeClasspath
main = "com.witkups.carloading.Optimizer"
standardInput = System.in
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compileOnly 'org.projectlombok:lombok:1.16.18'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
}