orangy
dsyang
05/23/2017, 2:04 AMkotlinc
to read the package declaration on java sources to determine fq-names? Bonus question, how difficult would it be for us to pass arbitrary .java files instead of folders into kotlinc-jvm
?udalov
kotlinc
is supported since last week, you can either check out the dev build 1.1.4-dev-311
or later, or wait for the next EAP of 1.1.3
the issue is https://youtrack.jetbrains.com/issue/KT-17697jw
05/31/2017, 4:00 PMjw
05/31/2017, 4:06 PMjw
05/31/2017, 4:07 PMtrevjones
06/09/2017, 11:47 PMpardom
06/23/2017, 6:35 PMpaulblessing
07/20/2017, 6:37 PMgreenrobot
08/07/2017, 3:22 PMmingkangpan
08/30/2017, 2:16 PMjanusz
09/08/2017, 4:11 PMdetekt
and ktlint
. Do you know if there is anything else?trevjones
09/13/2017, 3:18 PMEugenio
09/16/2017, 9:12 AMHi folks, we have started to work on incremental annotation processing together: Gradle, Groupon and Google.
We have a draft of our first milestone spec. Please feel free to review it and give your constructive feedback 😉
https://docs.google.com/document/d/1CXNfKmPx9hqfnGWic3F9sKHQ6T8ImDVxnXfkvWYqwxg/edit?usp=sharingSlack Conversation
trubesv
09/16/2017, 12:08 PM.gradle
files in IntelliJ?
It gets stuck for a few second when I type each character, like it's saving/reloading.. Very frustrating
Also, Gradle eats up my RAM incrementally, I think I messed my setup 😕
Do you have any advice regarding these issues? Thanks! Kartem_zin
10/26/2017, 10:35 PM--parallel
, see <https://youtrack.jetbrains.com/issue/KT-15562#comment=27-2494744>
bringoff
10/27/2017, 8:53 AMGradle build daemon disappeared unexpectedly (it may have been killed or may have crashed)
.
I’ve tried to add different params to build command, but this didn’t help. Adding -Dkotlin.compiler.execution.strategy=in-process
broke android data binding annotation processing. My current gradle build command looks like this: ./gradlew -Pkotlin.incremental=false -Dorg.gradle.parallel=false -Dorg.gradle.daemon=false testBetaQaUnitTest lintBetaQa testProdReleaseUnitTest lintProdRelease
holgerbrandl
11/11/2017, 10:48 PMartem_zin
11/14/2017, 11:28 PMkotlin-annotation-processing
artifact was discontinued and now there is a kotlin-annotation-processing-gradle
instead (as well as -maven
which was there for some time) <https://github.com/JetBrains/kotlin/commit/feee93186bdab504c5bf94d1c046bf7f2a0697af>
1. Does it mean that -gradle
version will become more Gradle-specific? Reason why I'm asking is because OkBuck + Buck need it to support Kapt and relied on kotlin-annotation-processing
before, but now it's gone
2. Changelog doesn't seem to reflect this change <https://github.com/JetBrains/kotlin/blob/1.1.60/ChangeLog.md>
cc @h0tk3ykirillrakhman
11/21/2017, 8:35 AMholgerbrandl
11/23/2017, 7:04 PMdharrigan
12/05/2017, 1:21 PM${property("foo")}
inside dependencies definitions, i.e., compile("com.google.protobuf:protobuf-java:${property("protobufVersion")}")
I know there is another way of defining the var inside the kts file, var foo="1.2"
then using $foo
inside the dependency definition. The latter being more "groovy" like (without the var definition). Is there no shorter way of expressing this?austynm
12/06/2017, 6:22 PMFor local development, if you’re not working on bytecode generation or the standard library, it’s OK to have only JDK 8 installed, and to point all of the environment variables mentioned above to your JDK 8 installation.When I do that I get the following error:
A problem occurred configuring root project 'kotlin'.
> Invalid environment value JDK_16: "/Library/Java/JavaVirtualMachines/jdk1.8.0_92.jdk/Contents/Home", expecting JDK home path
What am I doing wrong here?Eugen Martynov
12/13/2017, 5:50 PMkirillrakhman
12/19/2017, 10:30 AMGradle now uses separate output directories for each JVM language, but this build assumes a single directory for all classes from a source set. This behaviour has been deprecated and is scheduled to be removed in Gradle 5.0Is this something, the JB guys are aware of? Would be kinda awkward if the Kotlin plugin stopped working with Gradle 5.0
thalescm
12/19/2017, 2:16 PMthalescm
01/16/2018, 6:21 PMthalescm
01/17/2018, 2:42 PMthalescm
01/18/2018, 3:06 PMthalescm
01/18/2018, 9:11 PM