Skip to content

Commit

Permalink
Merge pull request #3 from SpineEventEngine/remove-prohibited-tags
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-yevsyukov authored May 1, 2024
2 parents 1883bd0 + f99b44d commit 04e44cc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions dependencies.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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: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).




# 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.
Expand Down Expand Up @@ -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: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).




# 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.
Expand Down Expand Up @@ -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).
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).
3 changes: 2 additions & 1 deletion gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -144,7 +145,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"))
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ all modules and does not describe the project structure per-subproject.
-->
<groupId>io.spine.tools</groupId>
<artifactId>ProtoTap</artifactId>
<version>0.8.0</version>
<version>0.8.1</version>

<inceptionYear>2015</inceptionYear>

Expand Down
2 changes: 1 addition & 1 deletion version.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")

0 comments on commit 04e44cc

Please sign in to comment.