Hi, someone have used kotlinx.cli ? I try to add i...
# announcements
j
Hi, someone have used kotlinx.cli ? I try to add it as dependeny but I never can use it in my code. https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-cli/0.2.0-dev-7
Copy code
repositories {
    mavenCentral()
    maven { url = uri("<https://dl.bintray.com/kotlin/kotlin-dev>") }
}

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
    implementation "org.jetbrains.kotlinx:kotlinx-cli:0.2.0-dev-7"
}

fun main(args: Array<String>) {
    val parser = ArgParser() // ArgParser not found
}
Build project is workin (no error) but I never found kotlinx.cli in my dependencies
I found the answer in a PR: https://github.com/Kotlin/kotlinx.cli/pull/10 Sad nowhere has merged it yet. This librabry seems to be sleeping.