thalescm
01/18/2018, 10:08 PMkotlinc
the first time (to generate stubs) it already fail cause it’s looking for expected generated classes that are used the sources, so, what should I pass as sources when generating stubs and running apt?yan
01/22/2018, 6:19 PMthalescm
01/22/2018, 6:24 PM-gradle
annotation processing jar, kapt is enable. Couldn’t get it to run with the default one, or even the -maven
oneyan
01/22/2018, 6:25 PM-P plugin:org.jetbrains.kotlin.kapt3:...
for every option you pass.yan
01/22/2018, 6:26 PMtools.jar
library. If I remember correctly, it should be passed as -Xplugin
. Please also note that you can’t use the :
classpath separator in it.thalescm
01/22/2018, 6:28 PM:
as classpath separator, and one -P
option with ,
as separator:yan
01/22/2018, 6:29 PMthalescm
01/22/2018, 6:30 PMthalescm
01/22/2018, 6:30 PMthalescm
01/22/2018, 6:44 PM-Xplugin
👍 Thanks