From af668234e06f1c07a010e9277db9931381f043df Mon Sep 17 00:00:00 2001 From: Jared Burrows Date: Tue, 21 Mar 2023 01:33:55 -0400 Subject: [PATCH] Prepare next development version --- .github/workflows/build.yml | 4 ++-- README.md | 1 + gradle-license-plugin/build.gradle | 12 ++++++++++++ gradle.properties | 2 +- gradle/libs.versions.toml | 4 ++-- 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 353aac21..b03e9e9d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -79,5 +79,5 @@ jobs: env: ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }} ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} - ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_PRIVATE_KEY }} - ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }} +# ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_PRIVATE_KEY }} +# ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }} diff --git a/README.md b/README.md index 855566a4..2226952f 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0) [![Maven](https://img.shields.io/maven-central/v/com.jaredsburrows/gradle-license-plugin?label=maven&style=flat)](https://search.maven.org/artifact/com.jaredsburrows/gradle-license-plugin) +[![Gradle Plugin Portal](https://img.shields.io/gradle-plugin-portal/v/com.jaredsburrows.license)](https://plugins.gradle.org/plugin/com.jaredsburrows.license) [![Build](https://github.com/jaredsburrows/gradle-license-plugin/actions/workflows/build.yml/badge.svg)](https://github.com/jaredsburrows/gradle-license-plugin/actions/workflows/build.yml) [![Twitter Follow](https://img.shields.io/twitter/follow/jaredsburrows.svg?style=social)](https://twitter.com/jaredsburrows) diff --git a/gradle-license-plugin/build.gradle b/gradle-license-plugin/build.gradle index d9335b0a..c5b8a6a2 100644 --- a/gradle-license-plugin/build.gradle +++ b/gradle-license-plugin/build.gradle @@ -51,6 +51,18 @@ dependencies { testImplementation libs.commons } +pluginBundle { + website = POM_URL + vcsUrl = POM_SCM_URL + description = POM_DESCRIPTION + tags = ['license'] + + plugins { + licensePlugin { + displayName = POM_NAME + } + } +} gradlePlugin { website = POM_URL vcsUrl = POM_SCM_URL diff --git a/gradle.properties b/gradle.properties index 335d531d..0ad141fb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ SONATYPE_AUTOMATIC_RELEASE=true RELEASE_SIGNING_ENABLED=true GROUP=com.jaredsburrows -VERSION_NAME=0.9.2 +VERSION_NAME=0.9.3-SNAPSHOT POM_INCEPTION_YEAR=2016 POM_PACKAGING=jar diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 2eb09292..4cc60e08 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -6,8 +6,8 @@ kotlin = "1.8.10" kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } dokka = { id = "org.jetbrains.dokka", version = "1.8.10" } ktlint = { id = "org.jlleitschuh.gradle.ktlint", version = "11.3.1" } -maven-publish = { id = "com.vanniktech.maven.publish", version = "0.24.0" } -plugin-publish = { id = "com.gradle.plugin-publish", version = "0.21.0" } +maven-publish = { id = "com.vanniktech.maven.publish", version = "0.19.0" } # "0.24.0" +plugin-publish = { id = "com.gradle.plugin-publish", version = "0.21.0" } # "1.1.0" versions = { id = "com.github.ben-manes.versions", version = "0.46.0" } [libraries]