From a99861d2cee1f31e494d2674069cbc5a6ca99670 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 1 May 2024 16:02:59 +0100 Subject: [PATCH 1/5] Bump version -> `0.8.1` --- dependencies.md | 12 ++++++------ pom.xml | 2 +- version.gradle.kts | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dependencies.md b/dependencies.md index 8042095..8a84990 100644 --- a/dependencies.md +++ b/dependencies.md @@ -1,6 +1,6 @@ -# Dependencies of `io.spine.tools:prototap-api:0.8.0` +# Dependencies of `io.spine.tools:prototap-api:0.8.1` ## Runtime 1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 24.0.1. @@ -480,12 +480,12 @@ The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Wed May 01 15:21:26 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Wed May 01 16:01:59 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:prototap-gradle-plugin:0.8.0` +# Dependencies of `io.spine.tools:prototap-gradle-plugin:0.8.1` ## Runtime 1. **Group** : com.google.code.findbugs. **Name** : jsr305. **Version** : 3.0.2. @@ -1243,12 +1243,12 @@ This report was generated on **Wed May 01 15:21:26 WEST 2024** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Wed May 01 15:21:27 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Wed May 01 16:02:00 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:prototap-protoc-plugin:0.8.0` +# Dependencies of `io.spine.tools:prototap-protoc-plugin:0.8.1` ## Runtime 1. **Group** : com.google.protobuf. **Name** : protobuf-java. **Version** : 3.25.1. @@ -1732,4 +1732,4 @@ This report was generated on **Wed May 01 15:21:27 WEST 2024** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Wed May 01 15:21:27 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file +This report was generated on **Wed May 01 16:02:00 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file diff --git a/pom.xml b/pom.xml index 03c8aa7..391d67e 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ all modules and does not describe the project structure per-subproject. --> io.spine.tools ProtoTap -0.8.0 +0.8.1 2015 diff --git a/version.gradle.kts b/version.gradle.kts index d5aa617..7cf6da3 100644 --- a/version.gradle.kts +++ b/version.gradle.kts @@ -24,4 +24,4 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -val versionToPublish: String by extra("0.8.0") +val versionToPublish: String by extra("0.8.1") From 61c681481611235bed2c7381993ccf103d3d8eaf Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 1 May 2024 16:04:50 +0100 Subject: [PATCH 2/5] Bump `checkout` and `setup-java` actions to `v4` As advised by GitHub: https://github.com/SpineEventEngine/ProtoTap/actions/runs/8910711476 --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cadc62c..73a0a69 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,11 +8,11 @@ jobs: publish: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: 'true' - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: java-version: 11 distribution: zulu From cd47f0a67036775fec76202eb6e3ebb75a0a69d7 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 1 May 2024 16:06:52 +0100 Subject: [PATCH 3/5] Remove forbidden tags ... as advised by this server response: ``` Caused by: java.lang.RuntimeException: Failed to post to server. Server responded with: The provided tag(s) 'gradle', 'plugin' are forbidden. All forbidden tags are: 'gradle', 'plugin'. at com.gradle.publish.ResponseUtil.assertValidResponse(ResponseUtil.java:17) at com.gradle.publish.OAuthHttpClient.send(OAuthHttpClient.java:80) at com.gradle.publish.PortalPublisher.doSignedPost(PortalPublisher.java:92) at com.gradle.publish.PortalPublisher.publishToPortal(PortalPublisher.java:58) at com.gradle.publish.PublishTask.executeTask(PublishTask.java:90) ``` For details see: https://github.com/SpineEventEngine/ProtoTap/actions/runs/8910711476/job/24470499713 --- gradle-plugin/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle-plugin/build.gradle.kts b/gradle-plugin/build.gradle.kts index aa47577..cd54f39 100644 --- a/gradle-plugin/build.gradle.kts +++ b/gradle-plugin/build.gradle.kts @@ -144,7 +144,7 @@ gradlePlugin { implementationClass = "io.spine.tools.prototap.gradle.Plugin" displayName = "ProtoTap Gradle Plugin" description = "Obtains generated code and related data from Protobuf compiler" - tags.set(listOf("protobuf", "protoc", "prototap", "codegen", "gradle", "plugin")) + tags.set(listOf("protobuf", "protoc", "prototap", "codegen")) } } } From 6128fb5cfea0e2958a5d187cba546c6d857cb82d Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 1 May 2024 16:08:02 +0100 Subject: [PATCH 4/5] Suppress warning --- gradle-plugin/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle-plugin/build.gradle.kts b/gradle-plugin/build.gradle.kts index cd54f39..ab58cd5 100644 --- a/gradle-plugin/build.gradle.kts +++ b/gradle-plugin/build.gradle.kts @@ -135,6 +135,7 @@ val shadowJar by tasks.getting(ShadowJar::class) { ) } +@Suppress("UnstableApiUsage") // `@Incubating` properties of `gradlePlugin`. gradlePlugin { website.set("https://spine.io") vcsUrl.set("https://github.com/SpineEventEngine/ProtoTap") From f99b44d6f4c080a18afecdab6868c70853421aa6 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 1 May 2024 16:09:32 +0100 Subject: [PATCH 5/5] Update build time --- dependencies.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dependencies.md b/dependencies.md index 8a84990..c8154b5 100644 --- a/dependencies.md +++ b/dependencies.md @@ -480,7 +480,7 @@ The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Wed May 01 16:01:59 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Wed May 01 16:08:15 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -1243,7 +1243,7 @@ This report was generated on **Wed May 01 16:01:59 WEST 2024** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Wed May 01 16:02:00 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Wed May 01 16:08:15 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). @@ -1732,4 +1732,4 @@ This report was generated on **Wed May 01 16:02:00 WEST 2024** using [Gradle-Lic The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Wed May 01 16:02:00 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file +This report was generated on **Wed May 01 16:08:16 WEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file