Skip to content

Commit

Permalink
chore: new plugin version 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sureshg committed Oct 27, 2024
1 parent ea249b9 commit b08817c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ semver.logOnlyOnRootProject=true
# semver.remote=origin

debug=false
test.version=0.13.0
test.version=0.14.0
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
java = "24"
kotlin = "2.1.0-Beta2"
kotlin-ksp = "2.1.0-Beta2-1.0.25"
kotlin-ksp = "2.1.0-Beta2-1.0.26"
kotlin-jvmtarget = "21"
kotlin-dsl-jvmtarget = "21"
kotlin-api-version = "2.1"
Expand Down Expand Up @@ -41,7 +41,7 @@ kotlin-redacted = "1.11.0-alpha01"
kotlinx-multik = "0.2.3"
kotlinx-dataframe = "0.13.1"
kotlinx-kandy = "0.5.0"
helidon = "4.1.2"
helidon = "4.1.3"
evas = "1.1.0"
kopy = "0.12.0+2.0.21"
poko = "0.17.2"
Expand Down
17 changes: 7 additions & 10 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
@file:Suppress("UnstableApiUsage")

pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}

val testVersion = extra["test.version"].toString()
resolutionStrategy {
eachPlugin {
if (requested.id.id.startsWith("dev.suresh.plugin")) {
useModule("dev.suresh.build:plugins:$testVersion")
}
}
}
}

dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.PREFER_SETTINGS
versionCatalogs { register("applibs") { from(files("gradle/libs.versions.toml")) } }
}

plugins { id("dev.suresh.plugin.repos") }
plugins {
val testVersion = extra["test.version"].toString()
id("dev.suresh.plugin.repos") version testVersion
}

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

Expand Down

0 comments on commit b08817c

Please sign in to comment.