mirror of
https://github.com/HMCore/Orbot.git
synced 2025-12-11 05:16:18 +00:00
30 lines
608 B
Groovy
30 lines
608 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version '1.3.61'
|
|
}
|
|
|
|
group 'de.wulkanat'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
|
|
compile 'net.dv8tion:JDA:4.2.0_189'
|
|
compile 'org.jsoup:jsoup:1.13.1'
|
|
compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
|
|
apply plugin: 'kotlinx-serialization'
|