Michael Grigoryan
06/11/2021, 6:31 PMdave
06/11/2021, 6:49 PMAlex Ostrovsky
06/11/2021, 6:58 PMMichael Grigoryan
06/11/2021, 7:17 PM./gradlew jar
@Alex Ostrovsky
Yeah @dave I think I am 😅 Is there a better way of building Jars?Michael Grigoryan
06/11/2021, 7:19 PMdave
06/11/2021, 7:19 PMAlex Ostrovsky
06/11/2021, 7:20 PMplugins {
id("com.github.johnrengelman.shadow") version "7.0.0"
}
tasks.named<ShadowJar>("shadowJar") {
isZip64 = true
manifest {
attributes(mapOf("Main-Class" to "MainKt"))
}
}
Michael Grigoryan
06/11/2021, 7:21 PMMichael Grigoryan
06/11/2021, 7:22 PMMichael Grigoryan
06/11/2021, 7:22 PMAn exception occurred applying plugin request [id: 'com.github.johnrengelman.shadow', version: '7.0.0']
> Failed to apply plugin class 'com.github.jengelman.gradle.plugins.shadow.ShadowBasePlugin'.
> This version of Shadow supports Gradle 7.0+ only. Please upgrade.
Alex Ostrovsky
06/11/2021, 7:23 PMAlex Ostrovsky
06/11/2021, 7:24 PMdistributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
Michael Grigoryan
06/11/2021, 7:25 PMMichael Grigoryan
06/11/2021, 7:28 PMAn exception occurred applying plugin request [id: 'com.github.johnrengelman.shadow', version: '6.1.0']
> Failed to apply plugin class 'com.github.jengelman.gradle.plugins.shadow.ShadowBasePlugin'.
> This version of Shadow supports Gradle 7.0+ only. Please upgrade.
Alex Ostrovsky
06/11/2021, 7:30 PMAlex Ostrovsky
06/11/2021, 7:30 PMMichael Grigoryan
06/11/2021, 7:31 PMephemient
06/11/2021, 7:32 PMMichael Grigoryan
06/11/2021, 7:33 PM./gradlew jar
it throws an error on meephemient
06/11/2021, 7:34 PM./gradlew run
or
./gradlew installDist
build/install/*/bin/*
Michael Grigoryan
06/11/2021, 7:34 PMTask 'run'/'installDir' not found in root project 'foo'.
ephemient
06/11/2021, 7:35 PMapplication
plugin, e.g.
plugins {
application
}
ephemient
06/11/2021, 7:35 PMjar
taskMichael Grigoryan
06/11/2021, 7:35 PMMichael Grigoryan
06/11/2021, 7:36 PMMichael Grigoryan
06/11/2021, 7:36 PMMichael Grigoryan
06/11/2021, 7:36 PMephemient
06/11/2021, 7:37 PMassembleDist
, distTar
, and distZip
tasksephemient
06/11/2021, 7:37 PMbuild/distributions/*.tar
and build/distributions/*.zip
which contain multiple jars and scripts to launch themMichael Grigoryan
06/11/2021, 7:38 PMMichael Grigoryan
06/11/2021, 7:38 PMephemient
06/11/2021, 7:38 PMMichael Grigoryan
06/11/2021, 7:40 PM