Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions dependencies.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


# Dependencies of `io.spine.tools:spine-gradle-plugin:2.0.0-SNAPSHOT.233`
# Dependencies of `io.spine.tools:spine-gradle-plugin:2.0.0-SNAPSHOT.234`

## Runtime
1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.20.0.
Expand Down Expand Up @@ -880,14 +880,14 @@

The dependencies distributed under several licenses, are used according their commercial-use-friendly license.

This report was generated on **Thu Mar 26 20:44:24 WET 2026** using
This report was generated on **Sun Mar 29 18:08:33 CEST 2026** 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:spine-time:2.0.0-SNAPSHOT.233`
# Dependencies of `io.spine:spine-time:2.0.0-SNAPSHOT.234`

## Runtime
1. **Group** : com.google.code.findbugs. **Name** : jsr305. **Version** : 3.0.2.
Expand Down Expand Up @@ -1868,14 +1868,14 @@ This report was generated on **Thu Mar 26 20:44:24 WET 2026** using

The dependencies distributed under several licenses, are used according their commercial-use-friendly license.

This report was generated on **Thu Mar 26 20:44:24 WET 2026** using
This report was generated on **Sun Mar 29 18:08:33 CEST 2026** 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:spine-time-java:2.0.0-SNAPSHOT.233`
# Dependencies of `io.spine:spine-time-java:2.0.0-SNAPSHOT.234`

## Runtime
1. **Group** : com.google.code.findbugs. **Name** : jsr305. **Version** : 3.0.2.
Expand Down Expand Up @@ -2678,14 +2678,14 @@ This report was generated on **Thu Mar 26 20:44:24 WET 2026** using

The dependencies distributed under several licenses, are used according their commercial-use-friendly license.

This report was generated on **Thu Mar 26 20:44:24 WET 2026** using
This report was generated on **Sun Mar 29 18:08:33 CEST 2026** 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:spine-time-kotlin:2.0.0-SNAPSHOT.233`
# Dependencies of `io.spine:spine-time-kotlin:2.0.0-SNAPSHOT.234`

## Runtime
1. **Group** : com.google.code.findbugs. **Name** : jsr305. **Version** : 3.0.2.
Expand Down Expand Up @@ -3496,14 +3496,14 @@ This report was generated on **Thu Mar 26 20:44:24 WET 2026** using

The dependencies distributed under several licenses, are used according their commercial-use-friendly license.

This report was generated on **Thu Mar 26 20:44:24 WET 2026** using
This report was generated on **Sun Mar 29 18:08:33 CEST 2026** 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:spine-time-testlib:2.0.0-SNAPSHOT.233`
# Dependencies of `io.spine.tools:spine-time-testlib:2.0.0-SNAPSHOT.234`

## Runtime
1. **Group** : com.google.code.findbugs. **Name** : jsr305. **Version** : 3.0.2.
Expand Down Expand Up @@ -4306,6 +4306,6 @@ This report was generated on **Thu Mar 26 20:44:24 WET 2026** using

The dependencies distributed under several licenses, are used according their commercial-use-friendly license.

This report was generated on **Thu Mar 26 20:44:24 WET 2026** using
This report was generated on **Sun Mar 29 18:08:33 CEST 2026** 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).
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ import org.junit.jupiter.api.Test
@DisplayName("`TimeGradlePlugin` should")
internal class TimeGradlePluginSpec {

@Test
fun `be applied to a project by its ID`() {
val project = ProjectBuilder.builder().build()
project.plugins.apply("java")
project.plugins.apply("io.spine.time")

project.plugins.hasPlugin("io.spine.time").shouldBeTrue()
project.plugins.hasPlugin(TimeGradlePlugin::class.java).shouldBeTrue()
}

@Nested
inner class `When 'useJavaExtensions' is` {

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</groupId>
<artifactId>spine-time</artifactId>
<version>2.0.0-SNAPSHOT.233</version>
<version>2.0.0-SNAPSHOT.234</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 @@ -29,4 +29,4 @@
*
* For dependencies on Spine modules please see [io.spine.dependency.local.Spine].
*/
val versionToPublish by extra("2.0.0-SNAPSHOT.233")
val versionToPublish by extra("2.0.0-SNAPSHOT.234")
Loading