kotlin-graphics/glm

Build Failed - Could not find kx.platform:source:0.2.0.

h0bb3 opened this issue · 3 comments

h0bb3 commented

Just tried to rebuild my project using the latest glm snapshot. However, it seems to fail:

implementation 'com.github.kotlin-graphics:glm:-SNAPSHOT'

Could not resolve all files for configuration ':compileClasspath'.
   > Could not resolve com.github.kotlin-graphics:glm:-SNAPSHOT.
     Required by:
         project :
      > Could not resolve com.github.kotlin-graphics:glm:-SNAPSHOT.
         > Could not parse POM https://jitpack.io/com/github/kotlin-graphics/glm/-SNAPSHOT/glm--8dae70c16a-1.pom
            > Could not find kx.platform:source:0.2.0.
              Searched in the following locations:
                - https://oss.sonatype.org/content/repositories/snapshots/kx/platform/source/0.2.0/source-0.2.0.pom
                - https://oss.sonatype.org/content/repositories/snapshots/kx/platform/source/0.2.0/source-0.2.0.jar
                - https://repo.maven.apache.org/maven2/kx/platform/source/0.2.0/source-0.2.0.pom
                - https://repo.maven.apache.org/maven2/kx/platform/source/0.2.0/source-0.2.0.jar
                - https://jitpack.io/kx/platform/source/0.2.0/source-0.2.0.pom
                - https://jitpack.io/kx/platform/source/0.2.0/source-0.2.0.jar

reverting to implementation 'com.github.kotlin-graphics:glm:9cb1ce84bf' fixes the issue.

add the following plugin repository in the settings.gradle(.kts)

pluginManagement {
    repositories {
        gradlePluginPortal()
        maven("https://repo.repsy.io/mvn/elect/kx")
    }
}

I'm in the process of extracting the build-logic, I'll update the readme soon, sorry for the issues!

h0bb3 commented

Great that fixes the issue. Thanks! I guess living on -SNAPSHOT has its ups and downs :)

Thanks again, closing issue.

Yep, I'll try to release more often in the near future :p