mirror of
https://github.com/HMCore/Orbot.git
synced 2025-12-15 15:26:18 +00:00
prepare twitter integration
This commit is contained in:
23
build.gradle
23
build.gradle
@@ -1,6 +1,6 @@
|
||||
plugins {
|
||||
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
|
||||
id 'org.jetbrains.kotlin.plugin.serialization' version '1.3.61'
|
||||
id 'org.jetbrains.kotlin.jvm' version '1.4.0'
|
||||
id 'org.jetbrains.kotlin.plugin.serialization' version '1.4.0'
|
||||
}
|
||||
|
||||
group 'de.wulkanat'
|
||||
@@ -9,21 +9,26 @@ version '1.4.1'
|
||||
repositories {
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
|
||||
maven {
|
||||
url 'https://dl.bintray.com/nephyproject/stable'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||||
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
|
||||
implementation 'blue.starry:penicillin:5.0.0'
|
||||
|
||||
compile 'net.dv8tion:JDA:4.2.0_189'
|
||||
compile 'net.dv8tion:JDA:4.2.0_204'
|
||||
compile 'org.jsoup:jsoup:1.13.1'
|
||||
compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0"
|
||||
compile 'org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC'
|
||||
}
|
||||
|
||||
compileKotlin {
|
||||
kotlinOptions.jvmTarget = "1.8"
|
||||
kotlinOptions.jvmTarget = '1.8'
|
||||
}
|
||||
compileTestKotlin {
|
||||
kotlinOptions.jvmTarget = "1.8"
|
||||
kotlinOptions.jvmTarget = '1.8'
|
||||
}
|
||||
|
||||
jar {
|
||||
@@ -34,7 +39,7 @@ jar {
|
||||
|
||||
task fatJar(type: Jar) {
|
||||
baseName = project.name + '-all'
|
||||
from((configurations.compile.findAll { !it.path.endsWith(".pom") }).collect {
|
||||
from((configurations.compile.findAll { !it.path.endsWith('.pom') }).collect {
|
||||
it.isDirectory() ? it : zipTree(it)
|
||||
})
|
||||
with jar
|
||||
@@ -43,5 +48,3 @@ task fatJar(type: Jar) {
|
||||
'Implementation-Version': version
|
||||
}
|
||||
}
|
||||
|
||||
apply plugin: 'kotlinx-serialization'
|
||||
|
||||
Reference in New Issue
Block a user