-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
29 lines (24 loc) · 882 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
group 'de.exlll'
version '1.0.0'
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
buildscript {
if (project.hasProperty("local_script")) {
apply from: file(local_script + "/buildscript.local.gradle"), to: buildscript
}
}
if (project.hasProperty("local_script")) {
project.ext.set('lib', true)
apply from: file(local_script + "/build.local.gradle")
}
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.2.0'
testCompile group: 'org.junit.platform', name: 'junit-platform-runner', version: '1.2.0'
testCompile group: 'org.junit.platform', name: 'junit-platform-suite-api', version: '1.2.0'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'com.google.jimfs', name: 'jimfs', version: '1.1'
}