-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (37 loc) · 830 Bytes
/
build.gradle
File metadata and controls
46 lines (37 loc) · 830 Bytes
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
group 'org.one10.examples'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
allprojects { apply plugin: "idea" }
mainClassName = 'org.one10.examples.mainapp.Main'
sourceCompatibility = 1.9
wrapper {
gradleVersion = '4.4'
}
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile project(':org.one10.examples.util'), project(':org.one10.examples.one'), project(':org.one10.examples.two')
}
idea {
project {
jdkName = '9.0'
languageLevel = 1.9
vcs = 'Git'
}
module {
scopes.COMPILE.plus += [configurations.compile]
scopes.TEST.plus += [configurations.testCompile]
}
}
sourceSets {
main {
java {}
}
test {
java {}
}
}