kotlin-graphics / glm

jvm glm
122 stars 20 forks source link

Incorrect gradle linking example #12

Closed asimaranov closed 4 years ago

asimaranov commented 4 years ago

The gradle linking example

dependencies {
      implementation 'com.github.kotlin-graphics.glm:glm:<version>'
  }

seems to be incorrect. Only such option- com.github.kotlin-graphics:glm:<version> worked for me

elect86 commented 4 years ago

Weird, it works flawless on other projects (like here)

Theoretically that should download all the modules availables (which for glm is not a problem since there are only 2 and one is essentially dummy)

IRus commented 4 years ago

I believe you looking at version 1.0.1 which 2 years old, and indeed has such com.github.kotlin-graphics:glm:<version> maven coordinates, relevant build file: https://github.com/kotlin-graphics/glm/blob/v1.0.1/build.gradle#L6

In master .glm suffix exists: https://github.com/kotlin-graphics/glm/blob/master/build.gradle#L27

IRus commented 4 years ago

https://github.com/kotlin-graphics/glm/wiki/1.-Getting-started#-11-setup - maven coordinates not quite right, .glm suffix if missing

elect86 commented 4 years ago

This shall be fixed by now