Cedric Beust
Cedric Beust
@PureCS Of course, the more pairs of eyes, the better! Thanks!
Are you able to build at all with this change? I get: ``` $ ./gradlew assemble FAILURE: Build failed with an exception. * What went wrong: Could not determine java...
Yes, I'd like to explore this too, but you can probably do this right now by having a regular Kotlin main class with whatever command line parsing you want (picocli,...
Partially solved but the prompts are still not coming back from the interactive end.
Yes, user classpath is on my [TODO](https://github.com/cbeust/kash/blob/master/TODO.md) list as well. Right now, I'm thinking that user classpath would be in `~/.kash.json` which Kash would read on start up.
Yes, take a look at the [TODO](https://github.com/cbeust/kash/blob/master/TODO.md) and you'll see I have import management listed there.
``` @file:Suppress("MayBeConstant") fun DependencyHandler.impl(vararg dep: Any) = dep.forEach { implementation(it) } fun DependencyHandler.testImpl(vararg dep: Any) = dep.forEach { testImplementation(it) } plugins { java id("org.jetbrains.kotlin.jvm") version "1.3.72" application id("edu.sc.seis.launch4j") version "2.4.8"...
@Dico200 If I understand @elizarov correctly, here is my interpretation of what's going on. There are already two different levels of code generation in the compiler: 1. When it sees...
I think the overall idea can be useful but I'm not a fan of wiring it into the data provider engine since this can be done with straight Java by...
Another problem I have is that the syntax you chose to add (which is clever by the way, allowing multiple data provider names) can be interpreted in many ways. You...