-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
37 lines (30 loc) · 852 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
31
32
33
34
35
36
37
buildscript {
ext.kotlin_version = '1.2.31'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
group 'net.amarszalek'
version '1.0-SNAPSHOT'
apply plugin: 'kotlin'
apply plugin: 'application'
mainClassName = 'kotcoin.BlockchainKt'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile group: 'commons-codec', name: 'commons-codec', version: '1.11'
compile 'io.javalin:javalin:1.5.0'
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.+"
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.1.0'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}