groostav
01/24/2018, 11:33 PMgroostav
01/24/2018, 11:34 PMprocess-builder.exec
call I'd be OK with thatgroostav
01/24/2018, 11:35 PMgroostav
01/25/2018, 12:18 AMcompile-src
and compile-tests&src
targets... is there any way I can combine those into a single step, such that I dont have to re-compile my production code but also have a folder that contains only production-code binaries?cedric
01/25/2018, 12:43 AMgroostav
01/25/2018, 7:10 AMgroostav
01/25/2018, 7:11 AMgroostav
01/25/2018, 7:11 AMgroostav
01/25/2018, 7:11 AMdevcharly
01/26/2018, 5:30 PMcedric
01/26/2018, 5:30 PMcedric
01/26/2018, 5:31 PMcedric
01/26/2018, 5:31 PMcedric
01/26/2018, 5:35 PMdevcharly
01/26/2018, 5:43 PMcedric
01/26/2018, 5:43 PMdevcharly
01/26/2018, 5:45 PMcedric
01/26/2018, 5:45 PM0.x
versiondevcharly
01/26/2018, 5:47 PM0.839
...cedric
01/26/2018, 6:19 PM--resolve
of versionless artifacts is working again for me, can you try on your end? ./kobaltw --resolve com.beust:kobalt:
ethauvin
01/26/2018, 8:49 PMethauvin
01/26/2018, 8:50 PMcedric
01/26/2018, 8:58 PMmetadata
files for a few days so version ranges could no longer be resolved…ethauvin
01/26/2018, 9:00 PMMavenCenteral
which should have been on JCenter
.devcharly
01/26/2018, 10:59 PMfatJar
option is broken.
When I build https://github.com/DevCharly/kobalt-ant then kobalt-ant-0.4.jar
is only 18k, but it should be ~2500kcedric
01/27/2018, 12:37 AMdevcharly
01/27/2018, 1:10 AMassemble
builds to JARs:
* kobaltBuild/libs/kobalt-ant-0.4.jar
should be "fat"
* kobaltBuild/libs/kobalt-ant-core-0.4.jar
is "non-fat"ethauvin
01/27/2018, 1:31 AM| |/ / ___ | |__ __ _ | | | |_
| ' / / _ \ | '_ \ / _` | | | | __|
| . \ | (_) | | |_) | | (_| | | | | |_
|_|\_\ \___/ |_.__/ \__,_| |_| \__| 1.0.100
Parallel build starting
╔═════════════════════╗
║ Building kobalt-ant ║
╚═════════════════════╝
───── kobalt-ant:compile
Downloaded artifact com.devcharly:kotlin-ant-dsl:pom:0.6 from JCenter (<https://jcenter.bintray.com/>, default, releases+snapshots)
Downloaded artifact org.apache.ant:ant:pom:1.10.1 from Maven (<http://repo1.maven.org/maven2/>, default, releases+snapshots)
Downloaded artifact org.apache.ant:ant-parent:pom:1.10.1 from Maven (<http://repo1.maven.org/maven2/>, default, releases+snapshots)
Downloaded artifact org.apache.ant:ant-launcher:pom:1.10.1 from Maven (<http://repo1.maven.org/maven2/>, default, releases+snapshots)
Downloaded artifact org.apache.ant:ant:jar:1.10.1 from Maven (<http://repo1.maven.org/maven2/>, default, releases+snapshots)
Downloaded artifact org.apache.ant:ant-launcher:jar:1.10.1 from Maven (<http://repo1.maven.org/maven2/>, default, releases+snapshots)
Downloaded artifact com.devcharly:kotlin-ant-dsl:jar:0.6 from JCenter (<https://jcenter.bintray.com/>, default, releases+snapshots)
Kotlin 1.2.0 compiling 1 file
*****
***** ERROR warning: some JAR files in the classpath have the Kotlin Runtime library bundled into them. This may cause difficult to debug problems if there's a different version of the Kotlin Runtime library in the classpath. Consider removing these libraries from the classpath or use '-Xskip-runtime-version-check' to suppress this warning
C:\Users\erik\.kobalt\cache\com\beust\kobalt-plugin-api\1.0.100\kobalt-plugin-api-1.0.100.jar: warning: library has Kotlin runtime bundled into it
src\main\kotlin\com\devcharly\kobalt\plugin\ant\AntTaskPlugin.kt:19:18: error: unresolved reference: kobalt
import com.beust.kobalt.IncrementalTaskInfo
ethauvin
01/27/2018, 1:40 AM$ k8 --resolve com.beust:kobalt:
__ __ __ __ __
/ //_/ ____ / /_ ____ _ / / / /_
/ ,< / __ \ / __ \ / __ `/ / / / __/
/ /| | / /_/ / / /_/ // /_/ / / / / /_
/_/ |_| \____/ /_.___/ \__,_/ /_/ \__/ 1.0.100
*****
***** ERROR Could not find artifact com.beust:kobalt-wrapper:jar:1.0.100 in Maven (<http://repo1.maven.org/maven2/>)
*****
ethauvin
01/27/2018, 1:42 AMdependencies {
compileOnly("com.beust:kobalt-plugin-api:")
compileOnly("org.jetbrains.kotlin:kotlin-stdlib:1.2.10")
compile("com.devcharly:kotlin-ant-dsl:${Versions.kotlinAntDSL}")
compile("org.apache.ant:ant:${Versions.ant}")
}
But the jars are the same size, as you're seeing.