Skip to content

Commit

Permalink
chore(deps): update plugin com.gradle.plugin-publish to v1 (#16)
Browse files Browse the repository at this point in the history
* chore(deps): update plugin com.gradle.plugin-publish to v1

* chore: adjusted to new Gradle publish plugin

* chore: adjusted to new Gradle publish plugin

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michal Augustýn <[email protected]>
Co-authored-by: Michal Augustýn <[email protected]>
  • Loading branch information
3 people authored Sep 26, 2022
1 parent 05d9b74 commit 5e76b8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'java-gradle-plugin'
id 'signing'
id 'io.github.gradle-nexus.publish-plugin' version '1.1.0'
id 'com.gradle.plugin-publish' version '0.21.0'
id 'com.gradle.plugin-publish' version '1.0.0'
}

group 'cz.augi'
Expand Down Expand Up @@ -38,16 +38,20 @@ sourceCompatibility = JavaVersion.VERSION_1_8

project.ext.set('gradle.publish.key', System.getenv('GRADLE_PORTAL_KEY'))
project.ext.set('gradle.publish.secret', System.getenv('GRADLE_PORTAL_SECRET'))

pluginBundle {
website = 'https://github.com/augi/gradle-scalafmt'
vcsUrl = 'https://github.com/augi/gradle-scalafmt'
description = 'Gradle plugin to apply scalafmt (Scala linting tool)'
tags = ['gradle', 'scala', 'scalafmt']
}

gradlePlugin {
plugins {
wartremoverPlugin {
id = 'cz.augi.gradle.scalafmt'
displayName = 'Gradle scalafmt plugin'
description = 'Gradle plugin to apply scalafmt (Scala linting tool)'
implementationClass = 'cz.augi.gradle.scalafmt.ScalafmtPlugin'
}
}
}
Expand Down

This file was deleted.

0 comments on commit 5e76b8e

Please sign in to comment.