Compare commits

..

2 Commits

Author SHA1 Message Date
Julien Lengrand-Lambert
a65ad94d73 Prepares version 0.1.3 2025-10-25 23:42:09 +01:00
Julien Lengrand-Lambert
b5504efb22 Moving back to Java 17 compatibility. I'll change demo-remote a little later, because otherwise I have to break the project for some time. 2025-10-25 23:38:43 +01:00
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "Java",
"image": "mcr.microsoft.com/devcontainers/java:3-21",
"image": "mcr.microsoft.com/devcontainers/java:1-21",
"features": {
"ghcr.io/devcontainers/features/java:1": {
"version": "none",

View File

@@ -10,7 +10,7 @@ repositories {
}
dependencies {
implementation("fr.lengrand:opengraphkt:0.1.3")
implementation("fr.lengrand:opengraphkt:0.1.2")
testImplementation(kotlin("test"))
}
@@ -19,7 +19,7 @@ tasks.test {
}
kotlin {
jvmToolchain(17)
jvmToolchain(24)
}
application {

View File

@@ -5,7 +5,7 @@ plugins {
}
group = "fr.lengrand"
version = "0.1.4-SNAPSHOT"
version = "0.1.3"
repositories {
mavenCentral()