Skip to content

Commit

Permalink
chore: Update gradle publishing plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil-perczynski authored and ppalaga committed Jan 24, 2024
1 parent 22deea5 commit 744a226
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
`java-gradle-plugin`
`maven-publish`

id("com.gradle.plugin-publish") version "0.16.0"
id("com.gradle.plugin-publish") version "1.2.1"
id("org.cadixdev.licenser") version "0.6.1"
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
}
Expand Down Expand Up @@ -65,22 +65,19 @@ dependencies {
}

gradlePlugin {
website = "https://github.com/ec4j/editorconfig-gradle-plugin"
vcsUrl = "https://github.com/ec4j/editorconfig-gradle-plugin.git"
plugins {
create("editorconfigPlugin") {
id = "org.ec4j.editorconfig"
displayName = "EditorConfig Gradle Plugin"
implementationClass = "org.ec4j.gradle.EditorconfigGradlePlugin"
description = project.description
tags = listOf("editorconfig", "lint", "gradle", "plugin")
}
}
}

pluginBundle {
website = "https://github.com/ec4j/editorconfig-gradle-plugin"
vcsUrl = "https://github.com/ec4j/editorconfig-gradle-plugin.git"
description = project.description
tags = listOf("editorconfig", "lint", "gradle", "plugin")
}

tasks.withType<Test> {
testLogging {
showStandardStreams = true
Expand Down

0 comments on commit 744a226

Please sign in to comment.