From f25c45be8841c22c360394274f81255e3323fc91 Mon Sep 17 00:00:00 2001 From: lucasstarsz Date: Thu, 12 May 2022 02:23:06 -0400 Subject: [PATCH] bump dependencies to latest/stable --- README.md | 2 +- build.gradle.kts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8b3bca6..62d951f 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Check out the following links to learn how to use FastJ: Please view the [build.gradle](build.gradle.kts) file -- it contains general instructions for modifying the base example. -[jdk-link]: https://adoptopenjdk.net/?variant=openjdk16 "Java JDK Download" +[jdk-link]: https://adoptium.net/?variant=openjdk17 "Java JDK Download" [Terminals Are Different]: https://gist.github.com/lucasstarsz/9bbc306f8655b916367d557043e498ad "Terminals Access Files Differently" [example-programs-readme-link]: http://fastj.me/tree/main/src/example "FastJ Examples" [documentation-link]: https://javadoc.io/doc/io.github.lucasstarsz.fastj/fastj-library "FastJ API Documentation" diff --git a/build.gradle.kts b/build.gradle.kts index 8fdf919..b4a6a8b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { /* To begin with, Gradle needs the "kotlin" plugin so that it knows this is a Kotlin project. */ - kotlin("jvm") version "1.5.20" + kotlin("jvm") version "1.6.21" /* This template is for an application -- we"ll need this plugin to make sure Gradle knows * this, too. */ application @@ -43,9 +43,9 @@ repositories.maven { repositories.mavenCentral() /* The dependency for FastJ, the game engine this template depends on. */ -dependencies.implementation("com.github.fastjengine:FastJ:1.6.0-SNAPSHOT-3") +dependencies.implementation("com.github.fastjengine:FastJ:1.6.0") /* We'll stick with the simplest logging option for now -- you can change it however you need. */ -dependencies.implementation("org.slf4j:slf4j-simple:2.0.0-alpha3") +dependencies.implementation("org.slf4j:slf4j-simple:2.0.0-alpha5") /* To make Kotlin compile and run properly with Gradle, this adds your Kotlin code to the Java * source sets. */