jwd83
07/21/2019, 2:55 PMkotlinc http.kt -include-runtime -d http.jar -cp ../libs/*.jar
throws an error error: source entry is not a Kotlin file: ../libs/javalin-3.2.0.jar
I'm realizing I'm probably going about this the complete wrong way but I've found the official documentation on command line compilation a bit thin. I just started with Javalin but am willing to swap to anything else that can get a little REST service up and running quickly.dave
07/21/2019, 3:40 PMdave
07/21/2019, 3:42 PMjwd83
07/21/2019, 4:18 PMjwd83
07/21/2019, 4:20 PMjwd83
07/21/2019, 4:23 PMdave
07/21/2019, 5:06 PMdave
07/21/2019, 5:07 PMjwd83
07/21/2019, 6:33 PMdave
07/21/2019, 6:46 PMczuckie
07/24/2019, 7:59 AM../libs/*.jar
, I think you need to separate each jar with a ;
but what the expansion would appear as is -cp ../libs/a.jar ../libs/javalin-3.2.0.jar
which the kotlinc
app will interpret as a source file (i'm guessing)