xaguzman / pathfinding

Java pathfinding framework.
Apache License 2.0
97 stars 27 forks source link

Can't import from Gradle, but .jar works #14

Closed JakeSteam closed 7 years ago

JakeSteam commented 7 years ago

Hey,

Recently had an issue where I couldn't get the library to import successfully. Changing the version number to an invalid version 404'd, so it's some kind of configuration issue by the looks of it. Anyway, adding the jar worked.

Error

xaguzman commented 7 years ago

That's very weird...the pom file in maven central just shows the right dependency:

<dependency>
   <groupId>com.github.xaguzman</groupId>
   <artifactId>pathfinding</artifactId>
   <version>0.2.6</version>
   <scope>compile</scope>
</dependency>

Does it work if you reference the pathfinding dependency as well and not just the gdx bridge?

JakeSteam commented 7 years ago

Ahh, that explains it, I thought the GDX bridge was a fork, not an extension. No longer able to test, but that would explain it.