Hi,
I’m new to Kotlin / Gradle so apologies if this is going to be a stupidly simple question. All I’m trying to do is import some dependencies to use in a project. They do exist on the mavenCentral() repository. The first two dependencies (core + logger) work, the remaining four do not. All I’m getting back from the build is “Could not resolve …”
I was not able to find anything that helped me, not entirely sure what to search for given how trivial this should be.
I’ve tried:
gradle clean
changing versions
removing the version specifier
gradle build file below. Please let me know anything else I can provide.
plugins {
kotlin("jvm") version "1.9.23"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
implementation("io.insert-koin:koin-core:3.2.0")
implementation("io.insert-koin:koin-logger-slf4j:3.2.0")
implementation("io.insert-koin:koin-android:3.2.0")
implementation("org.jzy3d:jzy3d-api:1.0.0")
implementation("org.jzy3d:jzy3d-jdt:1.0.0")
implementation("org.jetbrains.kotlinx:kotlinx-collections-csv:0.3.2")
}
tasks.test {
useJUnitPlatform()
}