From da10756b2797b6afba36b456fa8d9cfb7e5483a7 Mon Sep 17 00:00:00 2001 From: rgudwin Date: Thu, 25 Apr 2024 15:28:05 -0300 Subject: [PATCH] Moving to CST 1.4.1 --- README.md | 4 ++-- build.gradle | 13 +++++++++---- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e7dc228..f16feec 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Note: This library is still under development, and some concepts or features mig ``` dependencies { ... - implementation 'com.github.CST-Group:cst-bindings:1.0.6' + implementation 'com.github.CST-Group:cst-bindings:1.0.7' } ``` @@ -53,7 +53,7 @@ Sometimes, the version number (tag) in this README gets out of date, as maintain com.github.CST-Group cst-bindings - 1.0.6 + 1.0.7 ``` diff --git a/build.gradle b/build.gradle index aa9822f..c204e11 100644 --- a/build.gradle +++ b/build.gradle @@ -8,9 +8,14 @@ group = 'com.github.CST-Group' description = "CST-Bindings" -sourceCompatibility = 1.8 -targetCompatibility = 1.8 -version = '1.0.6' +java { + //sourceCompatibility = JavaVersion.VERSION_11 + //targetCompatibility = JavaVersion.VERSION_11 + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 +} + +version = '1.0.7' repositories { flatDir { @@ -34,7 +39,7 @@ configurations { } dependencies { - api('com.github.CST-Group:cst:1.4.0') + api('com.github.CST-Group:cst:1.4.1') api 'com.soartech:jsoar-core:4.1.3' api 'com.soartech:jsoar-debugger:4.1.3'