kyonifer
03/20/2018, 6:04 PMplugins{ kotlin("jvm") version extra["kotlinVersion"] }
in kotlin-dsl? (to keep nested projects using the same version of kotlin) The above complains that extra isnt visible from the plugins blockhmole
03/21/2018, 1:19 PMapi
exposes implementation details and implementation
hides them? Why are the names confused?hastebrot
03/21/2018, 7:57 PMsettings.gradle
to settings.gradle.kts
. It works without problems. A few months ago I had problems importing the project into IntelliJ and rootProject.name
was missing a setter method. I see this was fixed in the meantime. Great work!pcarrier
03/27/2018, 12:32 PMTobi
03/28/2018, 7:23 AMbuildSrc
module to maintain dependencies?pcarrier
03/28/2018, 7:32 PMLeeroy Smith
03/30/2018, 3:17 AMbarteks2x
04/01/2018, 6:04 PMjmfayard
04/03/2018, 6:29 AMeriwen
04/03/2018, 7:58 PMgradle init
, but this might get you started quickly: https://guides.gradle.org/building-kotlin-jvm-libraries/Pere Casafont
04/04/2018, 6:56 AMnimtiazm
04/09/2018, 5:52 AMflstaats
04/10/2018, 3:50 PMjlleitschuh
04/13/2018, 1:11 AMhastebrot
04/13/2018, 7:14 AMDiarmuid
04/14/2018, 8:17 AMRobert Menke
04/14/2018, 2:39 PMis List<*> -> it.addTo(configuration)
? Which versions of these dependencies are you using? Why does the configuration function accept any? I realize you probably have good answers to those questions, but I don’t think there’s any reason to complicate dependency specs.jakiej
04/17/2018, 5:44 AMmkobit
04/19/2018, 9:10 PMikej
04/20/2018, 6:35 AMmtl
04/22/2018, 7:17 PMstepango
04/24/2018, 7:59 AMkts
files and use it from groovy. How could i achieve that. apply from: "file.gradle.kts"
is not working in this case. Is there any other way?Paul Woitaschek
04/25/2018, 12:44 PMdave08
04/25/2018, 1:04 PMdocker run --rm -v "$PWD":/home/gradle/project -w /home/gradle/project gradle:4.5.1-jdk8-alpine gradle shadowJar --no-daemon --console plain
?BorzdeG
04/25/2018, 3:19 PM<https://github.com/BorzdeG/samples-kotlin-subprojects>
Here’s the command: ./gradlew classes
As a result I get this error:
e: $PROJECT_DIR/client/src/main/kotlin/demo/client/Client.kt: (3, 20): Unresolved reference: CoreModel
e: $PROJECT_DIR/client/src/main/kotlin/demo/client/Client.kt: (9, 12): Unresolved reference: CoreModel
> Task :client:compileKotlin FAILED
holgerbrandl
04/27/2018, 9:54 AMbuild.gradle.kts
using the green gradle icon as the build.gralde
in IJ? Is there a yt ticket?tyrondis
04/27/2018, 4:48 PMaarjav
04/28/2018, 10:07 PMguenther
04/30/2018, 8:49 AMimplementation(...)
or apiElements
or ... but not with api(...)
. Shouldn't this also be possible?gildor
05/01/2018, 7:08 AMgildor
05/01/2018, 7:08 AMorangy
05/01/2018, 9:52 AM