TheCitadelofRicks/build.gradle

39 lines
906 B
Groovy
Raw Normal View History

plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id 'org.jetbrains.kotlin.plugin.spring' version '1.3.72'
id 'org.springframework.boot' version '2.3.0.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
}
group 'org.mosad'
2020-06-11 17:22:31 +02:00
version '1.2.5'
repositories {
jcenter()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'com.google.code.gson:gson:2.8.6'
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.2'
}
2018-11-06 14:00:06 +01:00
test {
useJUnitPlatform()
testLogging {
events 'PASSED', 'FAILED', 'SKIPPED'
}
}
2018-11-06 14:00:06 +01:00
compileKotlin {
kotlinOptions.jvmTarget = "11"
2018-11-06 14:00:06 +01:00
}
compileTestKotlin {
kotlinOptions.jvmTarget = "11"
}