-
Notifications
You must be signed in to change notification settings - Fork 366
/
Copy pathbuild.gradle
52 lines (42 loc) · 1.28 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
import org.apache.tools.ant.filters.ReplaceTokens
import org.gradle.plugins.ide.idea.model.IdeaLanguageLevel
apply plugin: "java-library"
idea {
module {
languageLevel = new IdeaLanguageLevel(JavaVersion.VERSION_11)
}
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
dependencies {
/*******************************
* API Dependencies
*******************************/
/*******************************
* Implementation Dependencies
*******************************/
implementation(project(":genie-test"))
implementation("com.google.guava:guava")
implementation("commons-io:commons-io")
implementation("org.springframework.boot:spring-boot-starter-aop")
implementation("org.springframework.boot:spring-boot-starter-test")
/*******************************
* Compile Only Dependencies
*******************************/
/*******************************
* Runtime Only Dependencies
*******************************/
/*******************************
* Test Dependencies
*******************************/
}
processResources {
filesMatching("**/*.yml") {
filter ReplaceTokens, tokens: [
"genie.version": project.version.toString()
]
}
}