Skip to content

Commit

Permalink
Update dependencies and configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ftomassetti committed Sep 14, 2024
1 parent 5e531b7 commit 3cc6bc1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.dokka.gradle.DokkaTask

plugins {
id 'org.jetbrains.kotlin.jvm' version "${kotlin_version}"
id "org.jlleitschuh.gradle.ktlint" version "11.5.1"
alias(libs.plugins.ktlint)
id("maven-publish")
id("idea")
id("signing")
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'org.jetbrains.kotlin.jvm'
id "org.jlleitschuh.gradle.ktlint"
alias(libs.plugins.ktlint)
id "maven-publish"
id "antlr"
id "idea"
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ gson_version=2.10.1
lionwebJavaVersion=0.2.18
kspVersion=1.0.11
lionwebGenGradlePluginID=com.strumenta.kolasu.lionwebgen
kotestVersion=1.3.3
lionwebRepositoryCommitID=ce4949ab88e2407d75b531a1807fbd690e6dab1f
SONATYPE_CONNECT_TIMEOUT_SECONDS=180
SONATYPE_CLOSE_TIMEOUT_SECONDS=900
5 changes: 4 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
[plugins]
buildConfig = { id = "com.github.gmazzo.buildconfig", version = "5.3.5" }
superPublish = { id = "com.vanniktech.maven.publish", version = "0.22.0" }
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version = "11.5.1" }

[versions]
lwjava = "0.2.19"
lwkotlin = "0.2.6-SNAPSHOT"
lwkotlin = "0.2.6"
kotestVersion= "1.3.3"

[libraries]
lionwebjava = { group = "io.lionweb.lionweb-java", name = "lionweb-java-2023.1-core", version.ref = "lwjava" }
lionwebjavaemf = { group = "io.lionweb.lionweb-java", name = "lionweb-java-2023.1-emf", version.ref = "lwjava" }
lionwebkotlinrepoclient = { group = "io.lionweb.lionweb-kotlin", name = "lionweb-kotlin-2024.1-repo-client", version.ref = "lwkotlin" }
lionwebkotlinrepoclienttesting = { group = "io.lionweb.lionweb-kotlin", name = "lionweb-kotlin-2024.1-repo-client-testing", version.ref = "lwkotlin" }
lionwebkotlincore = { group = "io.lionweb.lionweb-kotlin", name = "lionweb-kotlin-2024.1-core", version.ref = "lwkotlin" }
kotesttestcontainers = { module = "io.kotest.extensions:kotest-extensions-testcontainers", version.ref = "kotestVersion" }
3 changes: 1 addition & 2 deletions lionwebrepo-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ plugins {
alias(libs.plugins.buildConfig)
}

val kotestVersion = extra["kotestVersion"]
val kotlinVersion = extra["kotlin_version"]

repositories {
Expand All @@ -32,7 +31,7 @@ testing {
implementation(libs.lionwebkotlinrepoclient)
implementation("org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVersion")
implementation("io.kotest:kotest-runner-junit5-jvm:5.8.0")
implementation("io.kotest.extensions:kotest-extensions-testcontainers:$kotestVersion")
implementation(libs.kotesttestcontainers)
implementation("io.kotest:kotest-assertions-core:5.8.0")
implementation("io.kotest:kotest-property:5.8.0")
implementation("org.testcontainers:testcontainers:1.19.5")
Expand Down
2 changes: 1 addition & 1 deletion semantics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
`maven-publish`
idea
signing
id("org.jlleitschuh.gradle.ktlint")
alias(libs.plugins.ktlint)
id("org.jetbrains.dokka")
}

Expand Down

0 comments on commit 3cc6bc1

Please sign in to comment.