Skip to content

Commit

Permalink
bump fastj version to 1.5.0, use jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasstarsz committed Aug 4, 2021
1 parent 47deef0 commit d6f3ec8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ application.mainClass.set("tech.fastj.template.GameKt")

/* 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 {
setUrl("https://oss.sonatype.org/content/repositories/snapshots/")
setUrl("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")

/* To make Kotlin compile and run properly with Gradle, this adds your Kotlin code to the Java
* source sets. */
Expand Down

0 comments on commit d6f3ec8

Please sign in to comment.