Changed from using Capsule to using Shadow
This commit is contained in:
parent
44291bcc39
commit
d349986303
3 changed files with 6 additions and 6 deletions
|
@ -10,7 +10,7 @@ repositories {
|
|||
google()
|
||||
}
|
||||
|
||||
val android_gradle_plugin_version = "3.1.3"
|
||||
val android_gradle_plugin_version = "3.2.0"
|
||||
val kotlin_version = "1.2.61"
|
||||
|
||||
dependencies {
|
||||
|
@ -23,4 +23,4 @@ tasks.withType<KotlinCompile> {
|
|||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,6 +8,7 @@ object DependencyVersions {
|
|||
|
||||
object Server {
|
||||
const val Capsule = "1.0.2"
|
||||
const val Shadow = "4.0.2"
|
||||
}
|
||||
|
||||
object Android {
|
||||
|
|
|
@ -3,14 +3,16 @@ import com.anthonycicchetti.financetracker.DependencyVersions
|
|||
buildscript {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
}
|
||||
dependencies {
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}"
|
||||
classpath "com.github.jengelman.gradle.plugins:shadow:${DependencyVersions.Server.Shadow}"
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id "us.kirchmeier.capsule" version '1.0.2'
|
||||
id 'com.github.johnrengelman.shadow' version '4.0.2'
|
||||
id 'application'
|
||||
id 'kotlin'
|
||||
}
|
||||
|
@ -39,6 +41,3 @@ compileTestKotlin {
|
|||
kotlinOptions.jvmTarget = "1.8"
|
||||
}
|
||||
|
||||
task fatCapsule(type: FatCapsule) {
|
||||
applicationClass 'MainKt'
|
||||
}
|
Loading…
Add table
Reference in a new issue