AlmasB / FXGLGames

This repo contains sample games built with FXGL
http://almasb.github.io/FXGLGames/
MIT License
807 stars 325 forks source link

Breakout fxgl version cannot be resolved #12

Closed wlnirvana closed 3 years ago

wlnirvana commented 3 years ago

Breakout uses dev-SNAPSHOT:

https://github.com/AlmasB/FXGLGames/blob/750b42cc733fff83eb6b582646c1d8794ba7e79f/Breakout/pom.xml#L19

but there does not seem to be that version in maven central

AlmasB commented 3 years ago

The dev-SNAPSHOT is loaded from a snapshot repository, defined in the same pom.xml. Perhaps your IDE isn't able to resolve the repository?

wlnirvana commented 3 years ago

Ah, I see. I happen to have a wildcard mirror in my maven setting, which is meant to be targeting central and jcenter, but unfortunately matches all repos. I fixed that and now all is well. Thanks for the explanation.