-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
30 lines (25 loc) · 996 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
30
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.71'
id 'java-library'
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation platform('org.jetbrains.kotlin:kotlin-bom')
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation 'com.github.DaikonWeb:daikon:1.9.0'
compile 'javax.inject:javax.inject:1'
compile 'com.netflix.eureka:eureka-client:1.9.14'
testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
testImplementation 'net.wuerl.kotlin:assertj-core-kotlin:0.2.1'
testImplementation 'com.github.DaikonWeb:topinambur:1.2.4'
testImplementation('org.springframework.cloud:spring-cloud-starter-netflix-eureka-server:2.2.1.RELEASE')
testImplementation('com.google.code.gson:gson:2.6')
}
test {
useJUnitPlatform()
}