From 09d8f46a4646bd65410c5684b22d5cf4779f233d Mon Sep 17 00:00:00 2001 From: rnentjes Date: Fri, 20 Dec 2024 16:33:38 +0100 Subject: [PATCH] Update dependencies, Java version, and project settings Upgraded Kotlin library to version 2.1.0 and updated `typed-byte-arrays` dependency to 0.2.10. Adjusted project settings to use JDK 21 (Temurin) and incremented project version to 0.3.4. Reordered Maven repository definitions for consistency. --- .idea/misc.xml | 2 +- build.gradle.kts | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 7b907e9..50f3b1a 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,7 +3,7 @@ - + diff --git a/build.gradle.kts b/build.gradle.kts index f4bcf02..71c9576 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,3 @@ -import org.jetbrains.kotlin.gradle.plugin.KotlinJsCompilerType - plugins { kotlin("multiplatform") version "2.1.0" `maven-publish` @@ -8,13 +6,13 @@ plugins { } group = "nl.astraeus" -version = "0.3.3" +version = "0.3.4" repositories { - mavenCentral() maven { url = uri("https://gitea.astraeus.nl:8443/api/packages/rnentjes/maven") } + mavenCentral() } kotlin { @@ -25,7 +23,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - api("nl.astraeus:typed-byte-arrays:0.2.9") + api("nl.astraeus:typed-byte-arrays:0.2.10") } } val commonTest by getting {