Changed from using Capsule to using Shadow

This commit is contained in:
acicchetti 2018-10-31 14:42:33 -04:00
parent 44291bcc39
commit d349986303
3 changed files with 6 additions and 6 deletions

View file

@ -10,7 +10,7 @@ repositories {
google() google()
} }
val android_gradle_plugin_version = "3.1.3" val android_gradle_plugin_version = "3.2.0"
val kotlin_version = "1.2.61" val kotlin_version = "1.2.61"
dependencies { dependencies {
@ -23,4 +23,4 @@ tasks.withType<KotlinCompile> {
kotlinOptions { kotlinOptions {
jvmTarget = "1.8" jvmTarget = "1.8"
} }
} }

View file

@ -8,6 +8,7 @@ object DependencyVersions {
object Server { object Server {
const val Capsule = "1.0.2" const val Capsule = "1.0.2"
const val Shadow = "4.0.2"
} }
object Android { object Android {

View file

@ -3,14 +3,16 @@ import com.anthonycicchetti.financetracker.DependencyVersions
buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()
jcenter()
} }
dependencies { dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}"
classpath "com.github.jengelman.gradle.plugins:shadow:${DependencyVersions.Server.Shadow}"
} }
} }
plugins { plugins {
id "us.kirchmeier.capsule" version '1.0.2' id 'com.github.johnrengelman.shadow' version '4.0.2'
id 'application' id 'application'
id 'kotlin' id 'kotlin'
} }
@ -39,6 +41,3 @@ compileTestKotlin {
kotlinOptions.jvmTarget = "1.8" kotlinOptions.jvmTarget = "1.8"
} }
task fatCapsule(type: FatCapsule) {
applicationClass 'MainKt'
}