Skip to content

Commit

Permalink
Updated Ben Manes' plugin to 0.47.0
Browse files Browse the repository at this point in the history
  • Loading branch information
olshevski committed Jul 4, 2023
1 parent 2f202e1 commit 21e9a3f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
17 changes: 8 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import org.gradle.model.internal.core.ModelNodes.withType
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
`java-gradle-plugin`
`maven-publish`
signing
kotlin("jvm") version "1.8.10"
id("com.gradle.plugin-publish") version "1.1.0"
kotlin("jvm") version "1.8.21"
id("com.gradle.plugin-publish") version "1.2.0"
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
}

Expand All @@ -25,20 +26,18 @@ tasks {
}

dependencies {
implementation("com.github.ben-manes:gradle-versions-plugin:0.46.0")
implementation("com.github.ben-manes:gradle-versions-plugin:0.47.0")

val junitVersion = "5.9.0"
testImplementation("org.junit.jupiter:junit-jupiter-api:$junitVersion")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
testImplementation("com.google.truth:truth:1.1.3")
}

nexusPublishing {
repositories {
sonatype {
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
}
nexusPublishing.repositories {
sonatype {
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
group=dev.olshevski.versions
version=1.0.4
version=1.0.5
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion sample/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
`java`
id("dev.olshevski.versions") version "1.0.4"
id("dev.olshevski.versions") version "1.0.5"
}

dependencies {
Expand Down

0 comments on commit 21e9a3f

Please sign in to comment.