Looks like the kotlin-inquirer library is no longer on Maven Central, causing build errors.
I just got a new laptop and tried a fresh install of my project that has this dependency:
implementation("com.github.kotlin-inquirer:kotlin-inquirer:0.1.0")
When I run the build I get this error:
$ ./gradlew build
FAILURE: Build failed with an exception.
* What went wrong:
Could not determine the dependencies of task ':build'.
> Could not create task ':assemble'.
> Could not create task ':jar'.
> Could not resolve all files for configuration ':compileClasspath'.
> Could not find com.github.kotlin-inquirer:kotlin-inquirer:0.1.0.
Searched in the following locations:
- https://repo.maven.apache.org/maven2/com/github/kotlin-inquirer/kotlin-inquirer/0.1.0/kotlin-inquirer-0.1.0.pom
- https://repo1.maven.org/com/github/kotlin-inquirer/kotlin-inquirer/0.1.0/kotlin-inquirer-0.1.0.pom
I browsed the Maven repository manually and it looks like the kotlin-inquirer library is no longer there.
Please advise
Looks like the
kotlin-inquirerlibrary is no longer on Maven Central, causing build errors.I just got a new laptop and tried a fresh install of my project that has this dependency:
implementation("com.github.kotlin-inquirer:kotlin-inquirer:0.1.0")When I run the build I get this error:
I browsed the Maven repository manually and it looks like the
kotlin-inquirerlibrary is no longer there.Please advise