You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
906 B
39 lines
906 B
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
|
|
id 'org.jetbrains.kotlin.plugin.spring' version '1.4.10'
|
|
id 'org.springframework.boot' version '2.3.3.RELEASE'
|
|
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
|
|
}
|
|
|
|
group 'org.mosad'
|
|
version '1.2.8'
|
|
|
|
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.8'
|
|
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'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
|
|
testLogging {
|
|
events 'PASSED', 'FAILED', 'SKIPPED'
|
|
}
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "11"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "11"
|
|
}
|