Skip to content

Commit

Permalink
Update gradle publish plugin to latest version
Browse files Browse the repository at this point in the history
* This was a requirement to publish again.
* `plugin` is no longer an allowed tag.
  • Loading branch information
jonalmeida committed Jun 6, 2024
1 parent dfdfdf7 commit 7fb8d6d
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions apilint/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

plugins {
id 'com.gradle.plugin-publish' version '0.18.0'
id 'com.gradle.plugin-publish' version '1.2.1'
id 'java-gradle-plugin'
id 'groovy'
id 'maven-publish'
Expand All @@ -27,8 +27,9 @@ version '0.5.3'

gradlePlugin {
plugins {
apilint {
apilintPlugin {
id = Config.GROUP
displayName = 'API Lint plugin'
implementationClass = 'org.mozilla.apilint.ApiLintPlugin'
}
}
Expand All @@ -38,14 +39,8 @@ pluginBundle {
website = 'https://github.com/mozilla-mobile/gradle-apilint'
vcsUrl = 'https://github.com/mozilla-mobile/gradle-apilint'

tags = ['api', 'lint', 'mozilla', 'plugin', 'compatibility']
tags = ['api', 'lint', 'mozilla', 'compatibility']
description = 'Tracks the API of an Android library and helps maintain backward compatibility.'

plugins {
apilint {
displayName = 'API Lint plugin'
}
}
}

task testApiLint(type: Exec) {
Expand Down

0 comments on commit 7fb8d6d

Please sign in to comment.