-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
54 lines (41 loc) · 1.34 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
buildscript {
ext.kotlin_version = '1.1.2'
repositories {
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE")
}
}
apply plugin: 'kotlin'
apply plugin: 'org.springframework.boot'
group 'org.ironworkschurch.events'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
// HTML templating library
compile 'org.thymeleaf:thymeleaf:3.0.5.RELEASE'
// dependency injection
compile("com.google.dagger:dagger:2.10")
// general purpose library for collections, etc.
compile("com.google.guava:guava:21.0")
// JSON parsing
compile("com.fasterxml.jackson.core:jackson-core:2.8.8")
compile("com.fasterxml.jackson.module:jackson-module-kotlin:2.8.7")
// logging
compile("org.slf4j:slf4j-simple:1.7.25")
compile("io.github.microutils:kotlin-logging:1.4.5")
testCompile("junit:junit:4.12")
testCompile("org.assertj:assertj-core-java8:1.0.0m1")
testCompile "com.nhaarman:mockito-kotlin-kt1.1:1.5.0"
}
task wrapper(type: Wrapper) {
gradleVersion = '3.5'
distributionType = Wrapper.DistributionType.ALL
}