Skip to content

Commit

Permalink
chore(deps): update plugin multijvmtesting to v0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK authored and renovate[bot] committed Nov 14, 2023
1 parent 4a59819 commit f1e674d
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ gitSemVer = { id = "org.danilopianini.git-sensitive-semantic-versioning", versio
gradlePluginPublish = { id = "com.gradle.plugin-publish", version = "1.2.1" }
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kotlin-qa = { id = "org.danilopianini.gradle-kotlin-qa", version = "0.54.0" }
multiJvmTesting = { id = "org.danilopianini.multi-jvm-test-plugin", version = "0.5.5" }
multiJvmTesting = { id = "org.danilopianini.multi-jvm-test-plugin", version = "0.5.6" }
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version.ref = "nexus-publish" }
publishOnCentral = { id = "org.danilopianini.publish-on-central", version = "5.0.19" }
taskTree = { id = "com.dorongold.task-tree", version = "2.1.1" }
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

plugins {
id("multiproject.kotlin-application-conventions")
id("org.danilopianini.multi-jvm-test-plugin")
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
plugins {
id("org.danilopianini.publish-on-central")
id("org.danilopianini.multi-jvm-test-plugin") version "0.5.6"
}
group = "io.github.danysk"
version = "0.1.0"

java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}

/*
subprojects {
apply(plugin = "org.danilopianini.publish-on-central")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,20 @@
plugins {
// Support convention plugins written in Kotlin. Convention plugins are build scripts in 'src/main' that automatically become available as plugins in the main build.
`kotlin-dsl`
id("org.danilopianini.multi-jvm-test-plugin") version "0.5.6"
}

repositories {
// Use the plugin portal to apply community plugins in convention plugins.
gradlePluginPortal()
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@

plugins {
id("multiproject.kotlin-library-conventions")
id("org.danilopianini.multi-jvm-test-plugin")
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,5 @@
* in the user manual at https://docs.gradle.org/7.4.2/userguide/multi_project_builds.html
* This project uses @Incubating APIs which are subject to change.
*/
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
}
rootProject.name = "multiproject"
include("app", "list", "utilities")
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

plugins {
id("multiproject.kotlin-library-conventions")
id("org.danilopianini.multi-jvm-test-plugin")
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ publishOnCentral {
password.set("pwd")
}
}

0 comments on commit f1e674d

Please sign in to comment.