-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
66 lines (55 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
66
plugins {
id 'org.springframework.boot' version '2.1.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.7.RELEASE'
id 'org.jetbrains.kotlin.jvm' version '1.3.41'
id 'org.jetbrains.kotlin.plugin.spring' version '1.3.41'
id "org.jetbrains.kotlin.plugin.jpa" version '1.3.41'
}
repositories {
jcenter()
}
dependencies {
/* Generic spring-boot / kotlin deps */
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation 'org.jetbrains.kotlin:kotlin-reflect'
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
/* Axon deps */
implementation 'org.axonframework:axon-spring-boot-starter:4.1.1'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.9.8'
implementation 'xom:xom:1.3.2'
runtime 'com.h2database:h2:1.4.199'
/* Test */
testImplementation 'org.axonframework:axon-test:4.1.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.3.2'
testImplementation 'com.shazam:shazamcrest:0.11'
testImplementation 'io.mockk:mockk:1.9.3'
testImplementation 'org.jetbrains.kotlin:kotlin-test'
}
group = 'nieldw'
version = '0.0.1-SNAPSHOT'
description = 'socially'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
test {
useJUnitPlatform()
}
compileKotlin {
kotlinOptions {
jvmTarget = '1.8'
apiVersion = '1.3'
languageVersion = '1.3'
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = '1.8'
apiVersion = '1.3'
languageVersion = '1.3'
}
}