diff --git a/build.gradle b/build.gradle index 07029da..2e5a9a8 100644 --- a/build.gradle +++ b/build.gradle @@ -37,14 +37,14 @@ application.mainModule.set('fastj.templategame') /* When you add a dependency on another project (like FastJ), you need to add specify where the * dependencies are coming from! - * FastJ is hosted on Maven Central, so we'll add it here. */ + * FastJ is hosted on Maven Central and Jitpack.io, so we"ll add the jitpack.io dependency here. */ repositories.maven { - url('https://oss.sonatype.org/content/repositories/snapshots/') + url('https://jitpack.io/') } repositories.mavenCentral() /* The dependency for FastJ, the game engine this template depends on. */ -dependencies.implementation('io.github.lucasstarsz.fastj:fastj-library:1.5.0-SNAPSHOT-2') +dependencies.implementation('com.github.fastjengine:FastJ:1.5.0') /* JLink is used to configure the executables and other distributions for your project. */