mirror of
https://github.com/HMCore/Orbot.git
synced 2025-12-10 12:56:15 +00:00
47 lines
1.1 KiB
Groovy
47 lines
1.1 KiB
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.5.10'
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version '1.5.10'
|
|
id 'com.github.johnrengelman.shadow' version '7.0.0'
|
|
|
|
}
|
|
|
|
group 'org.wulkanat'
|
|
version '2.0.1'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
maven {
|
|
url 'https://m2.dv8tion.net/releases'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
|
|
implementation 'net.dv8tion:JDA:4.2.1_253'
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.1'
|
|
|
|
implementation 'com.github.redouane59.twitter:twittered:1.20'
|
|
implementation group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.2'
|
|
|
|
testImplementation 'io.mockk:mockk:1.11.0'
|
|
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.5.10'
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes('Main-Class': 'org.hmcore.Main')
|
|
}
|
|
}
|
|
|
|
apply plugin: 'kotlinx-serialization'
|