Skip to content

Commit 17aa932

Browse files
Merge pull request #106 from SpineEventEngine/release/v1.7.0
Release `1.7.0`
2 parents e10b665 + 9199bc6 commit 17aa932

File tree

115 files changed

+727
-45
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+727
-45
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#
22
# Copyright 2020, TeamDev. All rights reserved.
33
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
410
# Redistribution and use in source and/or binary forms, with or without
511
# modification, must retain the above copyright notice and the following
612
# disclaimer.

.idea/copyright/TeamDev_Open_Source.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
/*
22
* Copyright 2020, TeamDev. All rights reserved.
33
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
410
* Redistribution and use in source and/or binary forms, with or without
511
* modification, must retain the above copyright notice and the following
612
* disclaimer.

buildSrc/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
/*
22
* Copyright 2020, TeamDev. All rights reserved.
33
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
410
* Redistribution and use in source and/or binary forms, with or without
511
* modification, must retain the above copyright notice and the following
612
* disclaimer.

buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
/*
22
* Copyright 2020, TeamDev. All rights reserved.
33
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
410
* Redistribution and use in source and/or binary forms, with or without
511
* modification, must retain the above copyright notice and the following
612
* disclaimer.

buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
/*
22
* Copyright 2020, TeamDev. All rights reserved.
33
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
410
* Redistribution and use in source and/or binary forms, with or without
511
* modification, must retain the above copyright notice and the following
612
* disclaimer.

buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
/*
22
* Copyright 2020, TeamDev. All rights reserved.
33
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
410
* Redistribution and use in source and/or binary forms, with or without
511
* modification, must retain the above copyright notice and the following
612
* disclaimer.

buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt

Lines changed: 34 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
/*
22
* Copyright 2020, TeamDev. All rights reserved.
33
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
410
* Redistribution and use in source and/or binary forms, with or without
511
* modification, must retain the above copyright notice and the following
612
* disclaimer.
@@ -134,30 +140,29 @@ object Build {
134140
val errorProneCheckApi = "com.google.errorprone:error_prone_check_api:${Versions.errorProne}"
135141
val errorProneCore = "com.google.errorprone:error_prone_core:${Versions.errorProne}"
136142
val errorProneTestHelpers = "com.google.errorprone:error_prone_test_helpers:${Versions.errorProne}"
137-
val checkerAnnotations = "org.checkerframework:checker-qual:${Versions.checkerFramework}"
138-
val checkerDataflow = listOf(
143+
val checkerAnnotations = "org.checkerframework:checker-qual:${Versions.checkerFramework}"
144+
val checkerDataflow = listOf(
139145
"org.checkerframework:dataflow:${Versions.checkerFramework}",
140146
"org.checkerframework:javacutil:${Versions.checkerFramework}"
141147
)
142-
val autoCommon = "com.google.auto:auto-common:${Versions.autoCommon}"
143-
val autoService = AutoService
144-
val jsr305Annotations = "com.google.code.findbugs:jsr305:${Versions.findBugs}"
145-
val guava = "com.google.guava:guava:${Versions.guava}"
146-
val flogger = "com.google.flogger:flogger:${Versions.flogger}"
147-
val protobuf = listOf(
148+
val autoCommon = "com.google.auto:auto-common:${Versions.autoCommon}"
149+
val autoService = AutoService
150+
val jsr305Annotations = "com.google.code.findbugs:jsr305:${Versions.findBugs}"
151+
val guava = "com.google.guava:guava:${Versions.guava}"
152+
val flogger = "com.google.flogger:flogger:${Versions.flogger}"
153+
val protobuf = listOf(
148154
"com.google.protobuf:protobuf-java:${Versions.protobuf}",
149155
"com.google.protobuf:protobuf-java-util:${Versions.protobuf}"
150156
)
151-
val protoc = "com.google.protobuf:protoc:${Versions.protobuf}"
152-
val googleHttpClient = "com.google.http-client:google-http-client:${Versions.httpClient}"
153-
val googleHttpClientApache =
154-
"com.google.http-client:google-http-client-apache:${Versions.apacheHttpClient}"
155-
val appengineApi = "com.google.appengine:appengine-api-1.0-sdk:${Versions.appengineApi}"
156-
val firebaseAdmin = "com.google.firebase:firebase-admin:${Versions.firebaseAdmin}"
157-
val jacksonDatabind = "com.fasterxml.jackson.core:jackson-databind:${Versions.jackson}"
158-
val roasterApi = "org.jboss.forge.roaster:roaster-api:${Versions.roaster}"
159-
val roasterJdt = "org.jboss.forge.roaster:roaster-jdt:${Versions.roaster}"
160-
val animalSniffer = "org.codehaus.mojo:animal-sniffer-annotations:${Versions.animalSniffer}"
157+
val protoc = "com.google.protobuf:protoc:${Versions.protobuf}"
158+
val googleHttpClient = "com.google.http-client:google-http-client:${Versions.httpClient}"
159+
val googleHttpClientApache = "com.google.http-client:google-http-client-apache:${Versions.apacheHttpClient}"
160+
val appengineApi = "com.google.appengine:appengine-api-1.0-sdk:${Versions.appengineApi}"
161+
val firebaseAdmin = "com.google.firebase:firebase-admin:${Versions.firebaseAdmin}"
162+
val jacksonDatabind = "com.fasterxml.jackson.core:jackson-databind:${Versions.jackson}"
163+
val roasterApi = "org.jboss.forge.roaster:roaster-api:${Versions.roaster}"
164+
val roasterJdt = "org.jboss.forge.roaster:roaster-jdt:${Versions.roaster}"
165+
val animalSniffer = "org.codehaus.mojo:animal-sniffer-annotations:${Versions.animalSniffer}"
161166
val ci = "true".equals(System.getenv("CI"))
162167
val gradlePlugins = GradlePlugins
163168
@Deprecated("Use Flogger over SLF4J.", replaceWith = ReplaceWith("flogger"))
@@ -226,29 +231,26 @@ object Runtime {
226231
}
227232

228233
object Test {
229-
val junit4 = "junit:junit:${Versions.junit4}"
230-
val junit5Api = listOf(
234+
val junit4 = "junit:junit:${Versions.junit4}"
235+
val junit5Api = listOf(
231236
"org.junit.jupiter:junit-jupiter-api:${Versions.junit5}",
232237
"org.junit.jupiter:junit-jupiter-params:${Versions.junit5}",
233238
"org.apiguardian:apiguardian-api:${Versions.apiguardian}"
234239
)
235-
val junit5Runner = "org.junit.jupiter:junit-jupiter-engine:${Versions.junit5}"
236-
val junitPioneer = "org.junit-pioneer:junit-pioneer:${Versions.junitPioneer}"
237-
val guavaTestlib = "com.google.guava:guava-testlib:${Versions.guava}"
238-
val mockito = "org.mockito:mockito-core:2.12.0"
239-
val hamcrest = "org.hamcrest:hamcrest-all:1.3"
240-
val truth = listOf(
240+
val junit5Runner = "org.junit.jupiter:junit-jupiter-engine:${Versions.junit5}"
241+
val junitPioneer = "org.junit-pioneer:junit-pioneer:${Versions.junitPioneer}"
242+
val guavaTestlib = "com.google.guava:guava-testlib:${Versions.guava}"
243+
val mockito = "org.mockito:mockito-core:2.12.0"
244+
val hamcrest = "org.hamcrest:hamcrest-all:1.3"
245+
val truth = listOf(
241246
"com.google.truth:truth:${Versions.truth}",
242247
"com.google.truth.extensions:truth-java8-extension:${Versions.truth}",
243248
"com.google.truth.extensions:truth-proto-extension:${Versions.truth}"
244249
)
245-
246-
@Deprecated(
247-
"Use Flogger over SLF4J.",
248-
replaceWith = ReplaceWith("Deps.runtime.floggerSystemBackend")
249-
)
250+
@Deprecated("Use Flogger over SLF4J.",
251+
replaceWith = ReplaceWith("Deps.runtime.floggerSystemBackend"))
250252
@Suppress("DEPRECATION") // Version of SLF4J.
251-
val slf4j = "org.slf4j:slf4j-jdk14:${Versions.slf4j}"
253+
val slf4j = "org.slf4j:slf4j-jdk14:${Versions.slf4j}"
252254
}
253255

254256
object Scripts {

config

license-report.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
# Dependencies of `io.spine:spine-testutil-time:1.6.16`
3+
# Dependencies of `io.spine:spine-testutil-time:1.7.0`
44

55
## Runtime
66
1. **Group:** com.google.code.findbugs **Name:** jsr305 **Version:** 3.0.2
@@ -327,12 +327,12 @@
327327
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
328328

329329

330-
This report was generated on **Thu Dec 03 14:28:14 EET 2020** 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).
330+
This report was generated on **Mon Dec 14 13:45:01 EET 2020** 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).
331331

332332

333333

334334

335-
# Dependencies of `io.spine:spine-time:1.6.16`
335+
# Dependencies of `io.spine:spine-time:1.7.0`
336336

337337
## Runtime
338338
1. **Group:** com.google.code.findbugs **Name:** jsr305 **Version:** 3.0.2
@@ -692,4 +692,4 @@ This report was generated on **Thu Dec 03 14:28:14 EET 2020** using [Gradle-Lice
692692
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
693693

694694

695-
This report was generated on **Thu Dec 03 14:28:25 EET 2020** 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).
695+
This report was generated on **Mon Dec 14 13:45:13 EET 2020** 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).

0 commit comments

Comments
 (0)