-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
29 lines (24 loc) · 934 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
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'
compile 'org.eclipse.jetty:jetty-server:9.4.27.v20200227'
compile 'org.eclipse.jetty:jetty-servlet:9.4.27.v20200227'
compile 'com.github.DaikonWeb:daikon-core:1.4.1'
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2'
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.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
testImplementation 'com.github.DaikonWeb:topinambur:1.4.0'
}
test {
useJUnitPlatform()
}