Marc Knaup
03/02/2019, 12:24 AMkevinmost
03/02/2019, 12:27 AMMarc Knaup
03/02/2019, 12:37 AMtschuchort
03/02/2019, 12:37 PMMarc Knaup
03/02/2019, 2:07 PMMarc Knaup
03/02/2019, 2:08 PMtschuchort
03/02/2019, 5:09 PMMarc Knaup
03/02/2019, 5:09 PMMarc Knaup
03/02/2019, 5:09 PMMarc Knaup
03/02/2019, 5:09 PMMarc Knaup
03/02/2019, 5:10 PMMarc Knaup
03/02/2019, 6:38 PMval result = KotlinCompiler()
.jvmTarget(KotlinJvmTarget.v1_8)
.processors(AnnotationProcessor())
.sourceFiles(File("tests/samples/Sample1.kt"), File("tests/samples/Test.java"))
.withSystemClasspaths()
.compile()
println(result.messages.joinToString("\n"))
println(result.generatedFiles.joinToString("\n") { "Generated: ${it.path}" })
println(result.exitCode)
logging: Using Kotlin home directory <no_path>
logging: Configuring the compilation environment
warning: Unable to find kotlin-stdlib.jar in the Kotlin home directory. Pass either '-no-stdlib' to prevent adding it to the classpath, or the correct '-kotlin-home'
warning: Unable to find kotlin-script-runtime.jar in the Kotlin home directory. Pass either '-no-stdlib' to prevent adding it to the classpath, or the correct '-kotlin-home'
warning: Unable to find kotlin-reflect.jar in the Kotlin home directory. Pass either '-no-reflect' or '-no-stdlib' to prevent adding it to the classpath, or the correct '-kotlin-home'
Generated: hey/Sample1JSONCodec.kt
OK
tschuchort
03/03/2019, 10:31 AMMarc Knaup
03/03/2019, 10:31 AMtschuchort
03/03/2019, 10:39 AMtschuchort
03/03/2019, 10:39 AMMarc Knaup
03/03/2019, 10:40 AMMarc Knaup
03/03/2019, 10:40 AMtschuchort
03/03/2019, 10:43 AMtschuchort
03/03/2019, 10:44 AMMarc Knaup
03/03/2019, 10:44 AMMarc Knaup
03/03/2019, 10:58 AMtschuchort
03/03/2019, 11:05 AMMarc Knaup
03/03/2019, 11:07 AMMarc Knaup
03/03/2019, 11:07 AMMarc Knaup
03/03/2019, 11:32 AM