diff --git a/config b/config index 08fefceea80..cb8f3e17002 160000 --- a/config +++ b/config @@ -1 +1 @@ -Subproject commit 08fefceea80948d89b05d3f8ad58c7fe8cbe57c6 +Subproject commit cb8f3e170024a9972d0b89cfa25044d83bfb9b3e diff --git a/core/src/main/java/io/spine/core/AcceptsExternal.java b/core/src/main/java/io/spine/core/AcceptsExternal.java new file mode 100644 index 00000000000..c9cd259a9b4 --- /dev/null +++ b/core/src/main/java/io/spine/core/AcceptsExternal.java @@ -0,0 +1,39 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package io.spine.core; + +import java.lang.annotation.Documented; +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +import static java.lang.annotation.ElementType.ANNOTATION_TYPE; +import static java.lang.annotation.RetentionPolicy.SOURCE; + +/** + * Marks a handler method annotation which may accept external messages. + * + * @see External + */ +@Retention(SOURCE) +@Target(ANNOTATION_TYPE) +@Documented +public @interface AcceptsExternal { +} diff --git a/core/src/main/java/io/spine/core/AcceptsFilters.java b/core/src/main/java/io/spine/core/AcceptsFilters.java new file mode 100644 index 00000000000..b72a9d618c5 --- /dev/null +++ b/core/src/main/java/io/spine/core/AcceptsFilters.java @@ -0,0 +1,37 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package io.spine.core; + +import java.lang.annotation.Documented; +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +import static java.lang.annotation.ElementType.ANNOTATION_TYPE; +import static java.lang.annotation.RetentionPolicy.SOURCE; + +/** + * Marks a handler method annotation which supports filtering events by fields using {@link Where}. + */ +@Retention(SOURCE) +@Target(ANNOTATION_TYPE) +@Documented +public @interface AcceptsFilters { +} diff --git a/core/src/main/java/io/spine/core/External.java b/core/src/main/java/io/spine/core/External.java new file mode 100644 index 00000000000..fcac6e076a6 --- /dev/null +++ b/core/src/main/java/io/spine/core/External.java @@ -0,0 +1,46 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package io.spine.core; + +import java.lang.annotation.Documented; +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +import static java.lang.annotation.ElementType.PARAMETER; +import static java.lang.annotation.RetentionPolicy.RUNTIME; + +/** + * Marks a handler method parameter to be of an external origin. + * + *
External messages are messages originated in a different Bounded Context. + * + *
Events (including Rejections) and entity states may be external. + * + *
Annotate the first parameter of the handler method with {@code @External} to make the handler + * accept external messages. By default, any message handler accepts domestic messages. + * + * @see AcceptsExternal + */ +@Retention(RUNTIME) +@Target(PARAMETER) +@Documented +public @interface External { +} diff --git a/core/src/main/java/io/spine/core/Subscribe.java b/core/src/main/java/io/spine/core/Subscribe.java index cfd808cce15..ab477f18dd0 100644 --- a/core/src/main/java/io/spine/core/Subscribe.java +++ b/core/src/main/java/io/spine/core/Subscribe.java @@ -83,50 +83,8 @@ * parameter. * * - *
If a {@linkplain ByField field filter} is defined, only the events matching this filter are - * passed to the subscriber. - * - *
Any combination of {@code external} and {@code filter} is valid, i.e. it is possible - * to filter external event subscriptions. Though, it is not possible to filter entity state - * updates. - * - *
A single subscribing class may define a number of subscriber methods with different field - * filters. Though, all the field filters must target the same field. For example, this event - * handling is valid: - *
- *
- * {@literal @Subscribe(filter = @ByField(path = "subscription.status", value = "EXPIRED"))}
- * void onExpired(UserLoggedIn event) {
- * // Handle expired subscription.
- * }
- *
- * {@literal @Subscribe(filter = @ByField(path = "subscription.status", value = "INACTIVE"))}
- * void onInactive(UserLoggedIn event) {
- * // Handle inactive subscription.
- * }
- *
- * {@literal @Subscribe}
- * void on(UserLoggedIn event) {
- * // Handle other cases.
- * }
- *
- *
- * And this one is not: - *
- * {@literal @Subscribe(filter = @ByField(path = "subscription.status", value = "EXPIRED"))}
- * void onExpired(UserLoggedIn event) {
- * }
- *
- * {@literal @Subscribe(filter = @ByField(path = "payment_method.status", value = "UNSET"))}
- * void onUnknownBilling(UserLoggedIn event) {
- * // Error, different field paths used in the same class for the same event type.
- * }
- *
- *
* If the annotation is applied to a method which doesn't satisfy either of these requirements, - * this method is not considered as a subscriber and is not registered for the command output - * delivery. + * this method is not considered a subscriber and is not registered for the command output delivery. * *
Event subscriber methods are designed to be called by the framework only. * Therefore, it is recommended to declare a them as package-private. @@ -135,16 +93,23 @@ *
Package-private access level still declares that an event reactor method is a part * of the Bounded Context-level API. See the {@link io.spine.core.BoundedContext * BoundedContext} description on how the packages and Bounded Contexts relate. + * + *
When subscribing to events, {@linkplain Where field filtering} is supported. */ @Retention(RUNTIME) @Target(METHOD) @Documented +@AcceptsFilters +@AcceptsExternal public @interface Subscribe { /** * When {@code true}, the annotated method receives an event generated from outside of the * Bounded Context to which the annotated method's class belongs. + * + * @deprecated please use {@link External @External} annotation for the first method parameter. */ + @Deprecated boolean external() default false; /** diff --git a/core/src/main/java/io/spine/core/Where.java b/core/src/main/java/io/spine/core/Where.java index bdba7daf392..feb84df163f 100644 --- a/core/src/main/java/io/spine/core/Where.java +++ b/core/src/main/java/io/spine/core/Where.java @@ -28,18 +28,57 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME; /** - * Filters events delivered to the {@linkplain Subscribe subscriber method} the first - * parameter of which has this annotation. + * Filters events delivered to a handler method. + * + *
To apply filtering to an event handler method, annotate the first parameter of the method. * *
For example, the following method would be invoked only if the owner of the created * project is {@code mary@ackme.net}: - *
{@code
- * \@Subscribe
+ *
+ *{@literal @Subscribe }
* void on(@Where(field = "owner.email", equals = "mary@ackme.net") ProjectCreated e) { ... }
- * }
+ *
+ *
+ * Annotations for handler methods which support {@code @Where} should be marked with + * {@link AcceptsFilters}. + * + *
If a field filter is defined, only the events matching this filter are passed to the handler + * method. + * + *
A single class may define a number of handler methods with different field filters. Though, + * all the field filters must target the same field. For example, this event handling is valid: + *
+ * {@literal @Subscribe}
+ * void{@literal onExpired(@Where(field = "subscription.status", equals = "EXPIRED")
+ * UserLoggedIn event)} {
+ * // Handle expired subscription.
+ * }
+ *
+ * {@literal @Subscribe}
+ * void{@literal onInactive(@Where(field = "subscription.status", equals = "INACTIVE")
+ * UserLoggedIn event)} {
+ * // Handle inactive subscription.
+ * }
+ *
+ * {@literal @Subscribe}
+ * void on(UserLoggedIn event) {
+ * // Handle other cases.
+ * }
+ *
+ * And this one is not: + *
+ * {@literal @Subscribe}
+ * void{@literal onExpired(@Where(field = "subscription.status", equals = "EXPIRED")
+ * UserLoggedIn event)} {
+ * }
*
- * NOTE: This syntax applies only to events. Filtering state subscriptions
- * is not supported.
+ * {@literal @Subscribe}
+ * void{@literal onUnknownBilling(@Where(field = "payment_method.status", equals = "UNSET")
+ * UserLoggedIn event)} {
+ * // Error, different field paths used in the same class for the same event type.
+ * }
+ *
*/
@Retention(RUNTIME)
@Target(PARAMETER)
diff --git a/license-report.md b/license-report.md
index be3fd8669db..3746f3d60dc 100644
--- a/license-report.md
+++ b/license-report.md
@@ -1,13 +1,13 @@
-# Dependencies of `io.spine:spine-client:1.5.9`
+# Dependencies of `io.spine:spine-client:1.5.10`
## Runtime
1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -36,7 +36,7 @@
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -47,46 +47,38 @@
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -96,7 +88,7 @@
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -122,7 +114,7 @@
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -174,11 +166,11 @@
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -188,11 +180,11 @@
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
@@ -201,16 +193,16 @@
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
@@ -221,39 +213,27 @@
* **Project URL:** [http://commons.apache.org/proper/commons-io/](http://commons.apache.org/proper/commons-io/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
- * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
- * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-
1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
- * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
- * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-
1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
- * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
- * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-
1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -261,14 +241,6 @@
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -304,7 +276,7 @@
* **Project URL:** [http://commons.apache.org/proper/commons-lang/](http://commons.apache.org/proper/commons-lang/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -313,7 +285,7 @@
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -352,23 +324,24 @@
1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5
* **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -432,12 +405,12 @@
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Mon Apr 27 21:13:37 EEST 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).
+This report was generated on **Tue Apr 28 16:44:10 EEST 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).
-# Dependencies of `io.spine:spine-core:1.5.9`
+# Dependencies of `io.spine:spine-core:1.5.10`
## Runtime
1. **Group:** com.google.code.findbugs **Name:** jsr305 **Version:** 3.0.2
@@ -465,7 +438,7 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -476,11 +449,11 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
@@ -489,15 +462,11 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.codehaus.mojo **Name:** animal-sniffer-annotations **Version:** 1.18
- * **POM License: MIT license** - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php)
- * **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
## Compile, tests and tooling
1. **Group:** com.beust **Name:** jcommander **Version:** 1.72
* **POM Project URL:** [http://jcommander.org](http://jcommander.org)
@@ -515,7 +484,7 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -567,11 +536,11 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -581,11 +550,11 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
@@ -594,16 +563,16 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
@@ -614,39 +583,27 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-io/](http://commons.apache.org/proper/commons-io/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
- * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
- * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-
1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
- * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
- * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-
1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
- * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
- * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-
1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -654,14 +611,6 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -697,7 +646,7 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-lang/](http://commons.apache.org/proper/commons-lang/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -706,7 +655,7 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -745,23 +694,24 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5
* **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -825,19 +775,19 @@ This report was generated on **Mon Apr 27 21:13:37 EEST 2020** using [Gradle-Lic
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Mon Apr 27 21:13:38 EEST 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).
+This report was generated on **Tue Apr 28 16:44:11 EEST 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).
-# Dependencies of `io.spine.tools:spine-model-assembler:1.5.9`
+# Dependencies of `io.spine.tools:spine-model-assembler:1.5.10`
## Runtime
1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -866,7 +816,7 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -877,46 +827,38 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -926,7 +868,7 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -952,7 +894,7 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -1004,11 +946,11 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -1018,11 +960,11 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
@@ -1031,16 +973,16 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
@@ -1051,27 +993,27 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-io/](http://commons.apache.org/proper/commons-io/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -1079,14 +1021,6 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -1117,7 +1051,7 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-lang/](http://commons.apache.org/proper/commons-lang/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -1126,7 +1060,7 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -1165,23 +1099,24 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5
* **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -1245,19 +1180,19 @@ This report was generated on **Mon Apr 27 21:13:38 EEST 2020** using [Gradle-Lic
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Mon Apr 27 21:13:39 EEST 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).
+This report was generated on **Tue Apr 28 16:44:11 EEST 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).
-# Dependencies of `io.spine.tools:spine-model-verifier:1.5.9`
+# Dependencies of `io.spine.tools:spine-model-verifier:1.5.10`
## Runtime
1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -1290,7 +1225,7 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -1301,15 +1236,15 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.11
+1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.12
* **POM Project URL:** [https://github.com/google/protobuf-gradle-plugin](https://github.com/google/protobuf-gradle-plugin)
* **POM License: BSD 3-Clause** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
@@ -1321,38 +1256,30 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -1366,7 +1293,7 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -1400,7 +1327,7 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -1456,11 +1383,11 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -1470,15 +1397,15 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.11
+1. **Group:** com.google.protobuf **Name:** protobuf-gradle-plugin **Version:** 0.8.12
* **POM Project URL:** [https://github.com/google/protobuf-gradle-plugin](https://github.com/google/protobuf-gradle-plugin)
* **POM License: BSD 3-Clause** - [http://opensource.org/licenses/BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
@@ -1487,16 +1414,16 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
@@ -1515,27 +1442,27 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -1543,14 +1470,6 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -1585,7 +1504,7 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-lang/](http://commons.apache.org/proper/commons-lang/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -1594,7 +1513,7 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -1641,27 +1560,28 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM License: Eclipse Public License version 1.0** - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html)
* **POM License: Public Domain** - [http://repository.jboss.org/licenses/cc0-1.0.txt](http://repository.jboss.org/licenses/cc0-1.0.txt)
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
1. **Group:** org.junit-pioneer **Name:** junit-pioneer **Version:** 0.4.2
* **POM Project URL:** [https://github.com/junit-pioneer/junit-pioneer](https://github.com/junit-pioneer/junit-pioneer)
* **POM License: The MIT License** - [https://github.com/junit-pioneer/junit-pioneer/blob/master/LICENSE](https://github.com/junit-pioneer/junit-pioneer/blob/master/LICENSE)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -1725,19 +1645,19 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Mon Apr 27 21:13:39 EEST 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).
+This report was generated on **Tue Apr 28 16:44:12 EEST 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).
-# Dependencies of `io.spine:spine-server:1.5.9`
+# Dependencies of `io.spine:spine-server:1.5.10`
## Runtime
1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -1766,7 +1686,7 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -1777,46 +1697,38 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -1826,7 +1738,7 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -1852,7 +1764,7 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -1912,11 +1824,11 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -1926,11 +1838,11 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
@@ -1939,16 +1851,16 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
@@ -1959,43 +1871,31 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-io/](http://commons.apache.org/proper/commons-io/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
- * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
- * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-
1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
- * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
- * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-
1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
- * **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
- * **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-
1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-netty-shaded **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-netty-shaded **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -2003,14 +1903,6 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -2046,7 +1938,7 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-lang/](http://commons.apache.org/proper/commons-lang/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -2055,7 +1947,7 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -2094,23 +1986,24 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5
* **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -2174,19 +2067,19 @@ This report was generated on **Mon Apr 27 21:13:39 EEST 2020** using [Gradle-Lic
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Mon Apr 27 21:13:40 EEST 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).
+This report was generated on **Tue Apr 28 16:44:13 EEST 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).
-# Dependencies of `io.spine:spine-testutil-client:1.5.9`
+# Dependencies of `io.spine:spine-testutil-client:1.5.10`
## Runtime
1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -2218,11 +2111,11 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -2232,62 +2125,54 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
* **POM Project URL:** [http://code.google.com/p/java-diff-utils/](http://code.google.com/p/java-diff-utils/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -2296,7 +2181,7 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [http://junit.org](http://junit.org)
* **POM License: Eclipse Public License 1.0** - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -2305,7 +2190,7 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -2320,15 +2205,16 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
1. **Group:** org.hamcrest **Name:** hamcrest-core **Version:** 1.3
* **POM License: New BSD License** - [http://www.opensource.org/licenses/bsd-license.php](http://www.opensource.org/licenses/bsd-license.php)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -2354,7 +2240,7 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -2406,11 +2292,11 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -2420,11 +2306,11 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
@@ -2433,16 +2319,16 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
@@ -2453,27 +2339,27 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-io/](http://commons.apache.org/proper/commons-io/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -2481,14 +2367,6 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -2519,7 +2397,7 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-lang/](http://commons.apache.org/proper/commons-lang/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -2528,7 +2406,7 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -2567,23 +2445,24 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5
* **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -2647,19 +2526,19 @@ This report was generated on **Mon Apr 27 21:13:40 EEST 2020** using [Gradle-Lic
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Mon Apr 27 21:13:42 EEST 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).
+This report was generated on **Tue Apr 28 16:44:15 EEST 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).
-# Dependencies of `io.spine:spine-testutil-core:1.5.9`
+# Dependencies of `io.spine:spine-testutil-core:1.5.10`
## Runtime
1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -2691,11 +2570,11 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -2705,62 +2584,54 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
* **POM Project URL:** [http://code.google.com/p/java-diff-utils/](http://code.google.com/p/java-diff-utils/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -2769,7 +2640,7 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [http://junit.org](http://junit.org)
* **POM License: Eclipse Public License 1.0** - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -2778,7 +2649,7 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -2793,23 +2664,24 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
1. **Group:** org.hamcrest **Name:** hamcrest-core **Version:** 1.3
* **POM License: New BSD License** - [http://www.opensource.org/licenses/bsd-license.php](http://www.opensource.org/licenses/bsd-license.php)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -2835,7 +2707,7 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -2887,11 +2759,11 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -2901,11 +2773,11 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
@@ -2914,16 +2786,16 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
@@ -2934,27 +2806,27 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-io/](http://commons.apache.org/proper/commons-io/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -2962,14 +2834,6 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -3000,7 +2864,7 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-lang/](http://commons.apache.org/proper/commons-lang/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -3009,7 +2873,7 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -3048,23 +2912,24 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5
* **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -3128,19 +2993,19 @@ This report was generated on **Mon Apr 27 21:13:42 EEST 2020** using [Gradle-Lic
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Mon Apr 27 21:13:44 EEST 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).
+This report was generated on **Tue Apr 28 16:44:16 EEST 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).
-# Dependencies of `io.spine:spine-testutil-server:1.5.9`
+# Dependencies of `io.spine:spine-testutil-server:1.5.10`
## Runtime
1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -3172,11 +3037,11 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -3186,62 +3051,54 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
* **POM Project URL:** [http://code.google.com/p/java-diff-utils/](http://code.google.com/p/java-diff-utils/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -3250,7 +3107,7 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [http://junit.org](http://junit.org)
* **POM License: Eclipse Public License 1.0** - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -3259,7 +3116,7 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -3274,15 +3131,16 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
1. **Group:** org.hamcrest **Name:** hamcrest-core **Version:** 1.3
* **POM License: New BSD License** - [http://www.opensource.org/licenses/bsd-license.php](http://www.opensource.org/licenses/bsd-license.php)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -3308,7 +3166,7 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [http://source.android.com/](http://source.android.com/)
* **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.12.0
+1. **Group:** com.google.api.grpc **Name:** proto-google-common-protos **Version:** 1.17.0
* **POM Project URL:** [https://github.com/googleapis/api-client-staging](https://github.com/googleapis/api-client-staging)
* **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -3360,11 +3218,11 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava **Version:** 29.0-jre
* **Manifest Project URL:** [https://github.com/google/guava/](https://github.com/google/guava/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 28.1-jre
+1. **Group:** com.google.guava **Name:** guava-testlib **Version:** 29.0-jre
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.google.guava **Name:** listenablefuture **Version:** 9999.0-empty-to-avoid-conflict-with-guava
@@ -3374,11 +3232,11 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/google/j2objc/](https://github.com/google/j2objc/)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
-1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.3
+1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.11.4
* **Manifest Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/)
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
@@ -3387,16 +3245,16 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **POM License: 3-Clause BSD License** - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause)
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth **Name:** truth **Version:** 1.0
+1. **Group:** com.google.truth **Name:** truth **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-java8-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-liteproto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0
+1. **Group:** com.google.truth.extensions **Name:** truth-proto-extension **Version:** 1.0.1
* **POM License: The Apache Software License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
1. **Group:** com.googlecode.java-diff-utils **Name:** diffutils **Version:** 1.3.0
@@ -3407,31 +3265,31 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-io/](http://commons.apache.org/proper/commons-io/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-netty **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-netty **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.26.0
+1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.28.1
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -3439,54 +3297,46 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **POM Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
-1. **Group:** io.netty **Name:** netty-buffer **Version:** 4.1.42.Final
+1. **Group:** io.netty **Name:** netty-buffer **Version:** 4.1.45.Final
* **Manifest Project URL:** [https://netty.io/](https://netty.io/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** io.netty **Name:** netty-codec **Version:** 4.1.42.Final
+1. **Group:** io.netty **Name:** netty-codec **Version:** 4.1.45.Final
* **Manifest Project URL:** [https://netty.io/](https://netty.io/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** io.netty **Name:** netty-codec-http **Version:** 4.1.42.Final
+1. **Group:** io.netty **Name:** netty-codec-http **Version:** 4.1.45.Final
* **Manifest Project URL:** [https://netty.io/](https://netty.io/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** io.netty **Name:** netty-codec-http2 **Version:** 4.1.42.Final
+1. **Group:** io.netty **Name:** netty-codec-http2 **Version:** 4.1.45.Final
* **Manifest Project URL:** [https://netty.io/](https://netty.io/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** io.netty **Name:** netty-codec-socks **Version:** 4.1.42.Final
+1. **Group:** io.netty **Name:** netty-codec-socks **Version:** 4.1.45.Final
* **Manifest Project URL:** [https://netty.io/](https://netty.io/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** io.netty **Name:** netty-common **Version:** 4.1.42.Final
+1. **Group:** io.netty **Name:** netty-common **Version:** 4.1.45.Final
* **Manifest Project URL:** [https://netty.io/](https://netty.io/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** io.netty **Name:** netty-handler **Version:** 4.1.42.Final
+1. **Group:** io.netty **Name:** netty-handler **Version:** 4.1.45.Final
* **Manifest Project URL:** [https://netty.io/](https://netty.io/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** io.netty **Name:** netty-handler-proxy **Version:** 4.1.42.Final
+1. **Group:** io.netty **Name:** netty-handler-proxy **Version:** 4.1.45.Final
* **Manifest Project URL:** [https://netty.io/](https://netty.io/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** io.netty **Name:** netty-resolver **Version:** 4.1.42.Final
+1. **Group:** io.netty **Name:** netty-resolver **Version:** 4.1.45.Final
* **Manifest Project URL:** [https://netty.io/](https://netty.io/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** io.netty **Name:** netty-transport **Version:** 4.1.42.Final
+1. **Group:** io.netty **Name:** netty-transport **Version:** 4.1.45.Final
* **Manifest Project URL:** [https://netty.io/](https://netty.io/)
* **POM License: Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
-1. **Group:** io.opencensus **Name:** opencensus-api **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
-1. **Group:** io.opencensus **Name:** opencensus-contrib-grpc-metrics **Version:** 0.24.0
- * **POM Project URL:** [https://github.com/census-instrumentation/opencensus-java](https://github.com/census-instrumentation/opencensus-java)
- * **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
-
1. **Group:** io.perfmark **Name:** perfmark-api **Version:** 0.19.0
* **POM Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark)
* **POM License: Apache 2.0** - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0)
@@ -3517,7 +3367,7 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **Project URL:** [http://commons.apache.org/proper/commons-lang/](http://commons.apache.org/proper/commons-lang/)
* **POM License: Apache License, Version 2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt)
-1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.0.0
+1. **Group:** org.apiguardian **Name:** apiguardian-api **Version:** 1.1.0
* **POM Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian)
* **POM License: The Apache License, Version 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt)
@@ -3526,7 +3376,7 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
* **POM License: GNU General Public License, version 2 (GPL2), with the classpath exception** - [http://www.gnu.org/software/classpath/license.html](http://www.gnu.org/software/classpath/license.html)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
-1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.0.1
+1. **Group:** org.checkerframework **Name:** checker-qual **Version:** 3.3.0
* **Manifest License:** MIT (Not packaged)
* **POM Project URL:** [https://checkerframework.org](https://checkerframework.org)
* **POM License: The MIT License** - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)
@@ -3565,23 +3415,24 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
1. **Group:** org.jacoco **Name:** org.jacoco.report **Version:** 0.8.5
* **POM License: Eclipse Public License 2.0** - [https://www.eclipse.org/legal/epl-2.0/](https://www.eclipse.org/legal/epl-2.0/)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.5.2
+1. **Group:** org.junit **Name:** junit-bom **Version:** 5.6.2 **No license information found**
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-api **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-engine **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.5.2
+1. **Group:** org.junit.jupiter **Name:** junit-jupiter-params **Version:** 5.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-commons **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
-1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.5.2
+1. **Group:** org.junit.platform **Name:** junit-platform-engine **Version:** 1.6.2
* **POM Project URL:** [https://junit.org/junit5/](https://junit.org/junit5/)
* **POM License: Eclipse Public License v2.0** - [https://www.eclipse.org/legal/epl-v20.html](https://www.eclipse.org/legal/epl-v20.html)
@@ -3645,4 +3496,4 @@ This report was generated on **Mon Apr 27 21:13:44 EEST 2020** using [Gradle-Lic
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
-This report was generated on **Mon Apr 27 21:13:47 EEST 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).
\ No newline at end of file
+This report was generated on **Tue Apr 28 16:44:19 EEST 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).
\ No newline at end of file
diff --git a/model/model-verifier/src/test/java/io/spine/model/verify/given/InvalidCommander.java b/model/model-verifier/src/test/java/io/spine/model/verify/given/InvalidCommander.java
index 26fa7c5e358..86047afd3eb 100644
--- a/model/model-verifier/src/test/java/io/spine/model/verify/given/InvalidCommander.java
+++ b/model/model-verifier/src/test/java/io/spine/model/verify/given/InvalidCommander.java
@@ -20,6 +20,7 @@
package io.spine.model.verify.given;
+import io.spine.core.External;
import io.spine.server.command.Command;
import io.spine.server.procman.ProcessManager;
import io.spine.test.model.verify.command.RestorePhoto;
@@ -36,8 +37,8 @@ protected InvalidCommander(String id) {
super(id);
}
- @Command(external = true)
- UploadPhoto handle(RestorePhoto command) {
+ @Command
+ UploadPhoto handle(@External RestorePhoto command) {
return UploadPhoto.getDefaultInstance();
}
}
diff --git a/pom.xml b/pom.xml
index 86f4843dc1b..0cd30c4651d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -12,7 +12,7 @@ all modules and does not describe the project structure per-subproject.
It is possible to receive external Events and Rejections. For that, mark the message parameter + * with the {@link io.spine.core.External @External} annotation. External Commands do not travel + * this way. + * *
A command-reacting method may emit one more more messages deriving from @@ -245,8 +252,9 @@ * @see io.spine.server.tuple.Either Returning One of Command Messages * @see io.spine.server.command.Assign Handling Commands */ -@Retention(RetentionPolicy.RUNTIME) -@Target(ElementType.METHOD) +@Retention(RUNTIME) +@Target(METHOD) +@AcceptsExternal public @interface Command { /** @@ -258,6 +266,10 @@ * *
If applied to a command receiving method, the Model
* {@linkplain io.spine.server.model.ExternalCommandReceiverMethodError error} is produced.
+ *
+ * @deprecated please use {@link io.spine.core.External @External} annotation for the first
+ * method parameter.
*/
+ @Deprecated
boolean external() default false;
}
diff --git a/server/src/main/java/io/spine/server/command/model/CommandReactionMethod.java b/server/src/main/java/io/spine/server/command/model/CommandReactionMethod.java
index 5488865a558..e1722f62d30 100644
--- a/server/src/main/java/io/spine/server/command/model/CommandReactionMethod.java
+++ b/server/src/main/java/io/spine/server/command/model/CommandReactionMethod.java
@@ -65,7 +65,7 @@ public Success fromEmpty(EventEnvelope handledSignal) {
* Ensures that the domestic events are dispatched to the domestic-event handlers
* and the external events are dispatched to the external-event handlers.
*
- * @see io.spine.server.command.Command#external()
+ * @see io.spine.core.External
*/
@Override
protected void checkAttributesMatch(EventEnvelope envelope) {
diff --git a/server/src/main/java/io/spine/server/command/model/CommanderClass.java b/server/src/main/java/io/spine/server/command/model/CommanderClass.java
index 41b3e83ca00..190658aba98 100644
--- a/server/src/main/java/io/spine/server/command/model/CommanderClass.java
+++ b/server/src/main/java/io/spine/server/command/model/CommanderClass.java
@@ -115,8 +115,8 @@ public ImmutableSet Command substitution methods accept {@linkplain io.spine.base.CommandMessage commands} as
* input and there is no notion of "external" commands in the system. Thus, such method
diff --git a/server/src/main/java/io/spine/server/event/React.java b/server/src/main/java/io/spine/server/event/React.java
index 5178e35ed75..27fd7f7b5ff 100644
--- a/server/src/main/java/io/spine/server/event/React.java
+++ b/server/src/main/java/io/spine/server/event/React.java
@@ -20,6 +20,8 @@
package io.spine.server.event;
+import io.spine.core.AcceptsExternal;
+
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
@@ -151,11 +153,16 @@
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Documented
+@AcceptsExternal
public @interface React {
/**
* When {@code true}, the annotated method of the entity reacts on the event generated from
* outside of the Bounded Context to which this entity belongs.
+ *
+ * @deprecated please use {@link io.spine.core.External @External} annotation for the first
+ * method parameter.
*/
+ @Deprecated
boolean external() default false;
}
diff --git a/server/src/main/java/io/spine/server/event/model/EventHandlerMethod.java b/server/src/main/java/io/spine/server/event/model/EventHandlerMethod.java
index f9e44fadaab..af598c3a1c7 100644
--- a/server/src/main/java/io/spine/server/event/model/EventHandlerMethod.java
+++ b/server/src/main/java/io/spine/server/event/model/EventHandlerMethod.java
@@ -83,8 +83,7 @@ public MethodParams params() {
* And vice versa, if the event handling method is designed for domestic events,
* it does not accept external events.
*
- * @see io.spine.core.Subscribe#external()
- * @see io.spine.server.event.React#external()
+ * @see io.spine.core.External
*/
@Override
protected void checkAttributesMatch(EventEnvelope event) {
diff --git a/server/src/main/java/io/spine/server/model/ExternalAttribute.java b/server/src/main/java/io/spine/server/model/ExternalAttribute.java
index caf7d7a498c..17db60251fd 100644
--- a/server/src/main/java/io/spine/server/model/ExternalAttribute.java
+++ b/server/src/main/java/io/spine/server/model/ExternalAttribute.java
@@ -20,11 +20,13 @@
package io.spine.server.model;
import com.google.errorprone.annotations.Immutable;
+import io.spine.core.External;
import io.spine.core.Subscribe;
import io.spine.server.command.Command;
import io.spine.server.event.React;
import java.lang.reflect.Method;
+import java.lang.reflect.Parameter;
import static com.google.common.base.Preconditions.checkNotNull;
@@ -32,9 +34,7 @@
* A meta-attribute of the {@code Method}, telling whether this method handles the objects,
* produced outside of the current bounded context.
*
- * @see Subscribe#external()
- * @see React#external()
- * @see Command#external()
+ * @see External
*/
@Immutable
enum ExternalAttribute implements Attribute Although technically it's possible for entities like
* {@linkplain io.spine.server.command.Command commanders} to declare their command substitution
- * methods as {@linkplain io.spine.server.command.Command#external() external}, there is no notion
+ * methods as {@linkplain io.spine.core.External external}, there is no notion
* of "external" commands in the system, and, to avoid confusion, such declarations should be
* avoided.
*
* Example of a faulty method:
* An exception thrown by this method should be picked up by
- * {@linkplain AbstractEventReactor#onError(EventEnvelope, RuntimeException)}.
*/
public static OrderReadyToBeServed someOrderReady() {
OrderReadyToBeServed result = OrderReadyToBeServed
diff --git a/server/src/test/java/io/spine/server/event/given/EventSubscriberTestEnv.java b/server/src/test/java/io/spine/server/event/given/EventSubscriberTestEnv.java
index 4a340f33319..261348f187b 100644
--- a/server/src/test/java/io/spine/server/event/given/EventSubscriberTestEnv.java
+++ b/server/src/test/java/io/spine/server/event/given/EventSubscriberTestEnv.java
@@ -21,6 +21,7 @@
package io.spine.server.event.given;
import io.spine.core.EventContext;
+import io.spine.core.External;
import io.spine.core.Subscribe;
import io.spine.logging.Logging;
import io.spine.server.event.AbstractEventSubscriber;
@@ -58,8 +59,8 @@ void on(ProjectStarted message) {
// Do nothing. Just expose the method.
}
- @Subscribe(external = true)
- void on(TaskAdded message) {
+ @Subscribe
+ void on(@External TaskAdded message) {
// Do nothing. Just expose the method.
}
diff --git a/server/src/test/java/io/spine/server/event/given/bus/EBExternalTaskAddedSubscriber.java b/server/src/test/java/io/spine/server/event/given/bus/EBExternalTaskAddedSubscriber.java
index 8f1a4c07ab0..b2fdf8e56db 100644
--- a/server/src/test/java/io/spine/server/event/given/bus/EBExternalTaskAddedSubscriber.java
+++ b/server/src/test/java/io/spine/server/event/given/bus/EBExternalTaskAddedSubscriber.java
@@ -21,6 +21,7 @@
package io.spine.server.event.given.bus;
import io.spine.core.EventContext;
+import io.spine.core.External;
import io.spine.core.Subscribe;
import io.spine.json.Json;
import io.spine.server.event.AbstractEventSubscriber;
@@ -36,8 +37,8 @@ public class EBExternalTaskAddedSubscriber extends AbstractEventSubscriber {
public static EBTaskAdded taskAddedEvent = null;
@SuppressWarnings("AssignmentToStaticFieldFromInstanceMethod")
- @Subscribe(external = true)
- void on(EBTaskAdded message, EventContext context) {
+ @Subscribe
+ void on(@External EBTaskAdded message, EventContext context) {
taskAddedEvent = message;
if (!context.getExternal()) {
fail(format(
diff --git a/server/src/test/java/io/spine/server/event/model/given/classes/ConferenceProgram.java b/server/src/test/java/io/spine/server/event/model/given/classes/ConferenceProgram.java
index 39b5c6c696a..a1f1a05e51e 100644
--- a/server/src/test/java/io/spine/server/event/model/given/classes/ConferenceProgram.java
+++ b/server/src/test/java/io/spine/server/event/model/given/classes/ConferenceProgram.java
@@ -20,6 +20,7 @@
package io.spine.server.event.model.given.classes;
+import io.spine.core.External;
import io.spine.core.Subscribe;
import io.spine.server.event.EventSubscriber;
import io.spine.test.event.model.ConferenceAnnounced;
@@ -34,8 +35,8 @@
*/
public class ConferenceProgram implements EventSubscriber {
- @Subscribe(external = true) // Pretend this is an external event.
- void setConferenceDate(ConferenceAnnounced event) {
+ @Subscribe // Pretend this is an external event.
+ void setConferenceDate(@External ConferenceAnnounced event) {
// Do nothing.
}
diff --git a/server/src/test/java/io/spine/server/event/model/given/classes/ConferenceSetup.java b/server/src/test/java/io/spine/server/event/model/given/classes/ConferenceSetup.java
index 2340d713aa2..5aba5d79c16 100644
--- a/server/src/test/java/io/spine/server/event/model/given/classes/ConferenceSetup.java
+++ b/server/src/test/java/io/spine/server/event/model/given/classes/ConferenceSetup.java
@@ -23,6 +23,7 @@
import com.google.protobuf.Any;
import io.spine.base.Identifier;
import io.spine.core.EventContext;
+import io.spine.core.External;
import io.spine.core.Version;
import io.spine.core.Versions;
import io.spine.server.event.EventReactor;
@@ -49,8 +50,8 @@ public class ConferenceSetup implements EventReactor {
private static final Any id = Identifier.pack(ConferenceSetup.class.getName());
- @React(external = true) // Just pretend that the event is external.
- SpeakersInvited invitationPolicy(ConferenceAnnounced event) {
+ @React // Just pretend that the event is external.
+ SpeakersInvited invitationPolicy(@External ConferenceAnnounced event) {
LocalDate speakerSubmissionDeadline =
toJavaTime(event.getDate()).plusWeeks(3);
return SpeakersInvited
diff --git a/server/src/test/java/io/spine/server/event/model/given/subscriber/ExternalSubscriber.java b/server/src/test/java/io/spine/server/event/model/given/subscriber/ExternalSubscriber.java
index 13ff1e9224f..32e898bae66 100644
--- a/server/src/test/java/io/spine/server/event/model/given/subscriber/ExternalSubscriber.java
+++ b/server/src/test/java/io/spine/server/event/model/given/subscriber/ExternalSubscriber.java
@@ -20,6 +20,7 @@
package io.spine.server.event.model.given.subscriber;
+import io.spine.core.External;
import io.spine.core.Subscribe;
import io.spine.test.reflect.event.RefProjectCreated;
@@ -29,7 +30,7 @@
*/
public class ExternalSubscriber extends TestEventSubscriber {
- @Subscribe(external = true)
- void handle(RefProjectCreated externalEvent) {
+ @Subscribe
+ void handle(@External RefProjectCreated externalEvent) {
}
}
diff --git a/server/src/test/java/io/spine/server/given/groups/GroupNameProjection.java b/server/src/test/java/io/spine/server/given/groups/GroupNameProjection.java
index 625cb88dcf8..7ee1c6de18b 100644
--- a/server/src/test/java/io/spine/server/given/groups/GroupNameProjection.java
+++ b/server/src/test/java/io/spine/server/given/groups/GroupNameProjection.java
@@ -20,6 +20,7 @@
package io.spine.server.given.groups;
+import io.spine.core.External;
import io.spine.core.Subscribe;
import io.spine.server.given.organizations.Organization;
import io.spine.server.projection.Projection;
@@ -35,8 +36,8 @@ private GroupNameProjection(GroupId id) {
super(id);
}
- @Subscribe(external = true)
- void onUpdate(Organization organization) {
+ @Subscribe
+ void onUpdate(@External Organization organization) {
builder().setName(organization.getName());
}
diff --git a/server/src/test/java/io/spine/server/given/groups/GroupProjection.java b/server/src/test/java/io/spine/server/given/groups/GroupProjection.java
index 087af554214..b3ca40626b3 100644
--- a/server/src/test/java/io/spine/server/given/groups/GroupProjection.java
+++ b/server/src/test/java/io/spine/server/given/groups/GroupProjection.java
@@ -22,6 +22,7 @@
import com.google.protobuf.Timestamp;
import io.spine.core.EventContext;
+import io.spine.core.External;
import io.spine.core.Subscribe;
import io.spine.server.given.organizations.Organization;
import io.spine.server.projection.Projection;
@@ -32,8 +33,8 @@
public final class GroupProjection extends Projection This flow is intentionally complex so that the aggregate reacts to both external and
* domestic events.
*/
- @React(external = true)
- DocumentImported on(OpenOfficeDocumentUploaded event, EventContext context) {
+ @React
+ DocumentImported on(@External OpenOfficeDocumentUploaded event, EventContext context) {
return DocumentImported
.newBuilder()
.setId(event.getId())
diff --git a/server/src/test/java/io/spine/server/integration/given/EditHistoryProjection.java b/server/src/test/java/io/spine/server/integration/given/EditHistoryProjection.java
index 0ee2ca602c0..d272df61a4a 100644
--- a/server/src/test/java/io/spine/server/integration/given/EditHistoryProjection.java
+++ b/server/src/test/java/io/spine/server/integration/given/EditHistoryProjection.java
@@ -20,6 +20,7 @@
package io.spine.server.integration.given;
+import io.spine.core.External;
import io.spine.core.Subscribe;
import io.spine.server.integration.DocumentId;
import io.spine.server.integration.Edit;
@@ -40,8 +41,8 @@ void on(TextEdited event) {
.addEdit(event.getEdit());
}
- @Subscribe(external = true)
- void on(UserDeleted event) {
+ @Subscribe
+ void on(@External UserDeleted event) {
List
- * {@code
- * \@Command(external = true)
- * public StartProject on(CreateProject command) {
- * }
- * }
+ *{@literal @Command}
+ * public StartProject on(@External CreateProject command) { ... }
*
*/
public final class ExternalCommandReceiverMethodError extends ModelError {
diff --git a/server/src/test/java/io/spine/server/aggregate/given/klasse/EngineAggregate.java b/server/src/test/java/io/spine/server/aggregate/given/klasse/EngineAggregate.java
index 7c268e8c6ee..c85c6d2c652 100644
--- a/server/src/test/java/io/spine/server/aggregate/given/klasse/EngineAggregate.java
+++ b/server/src/test/java/io/spine/server/aggregate/given/klasse/EngineAggregate.java
@@ -20,6 +20,7 @@
package io.spine.server.aggregate.given.klasse;
+import io.spine.core.External;
import io.spine.server.aggregate.Aggregate;
import io.spine.server.aggregate.Apply;
import io.spine.server.aggregate.given.klasse.command.StartEngine;
@@ -100,13 +101,13 @@ EngineStopped on(TankEmpty event) {
* External event reactions
****************************/
- @React(external = true)
- Nothing on(EmissionTestStarted event) {
+ @React
+ Nothing on(@External EmissionTestStarted event) {
return nothing();
}
- @React(external = true)
- Nothing on(EmissionTestStopped event) {
+ @React
+ Nothing on(@External EmissionTestStopped event) {
return nothing();
}
@@ -133,8 +134,8 @@ Nothing on(Rejections.EngineAlreadyStopped rejection) {
* External rejection reactions
*************************************/
- @React(external = true)
- Nothing on(Rejections.CannotStartEmissionTest rejection) {
+ @React
+ Nothing on(@External Rejections.CannotStartEmissionTest rejection) {
return nothing();
}
diff --git a/server/src/test/java/io/spine/server/command/model/given/commander/SampleCommander.java b/server/src/test/java/io/spine/server/command/model/given/commander/SampleCommander.java
index 2dd46e734cf..f5e16d1a3d0 100644
--- a/server/src/test/java/io/spine/server/command/model/given/commander/SampleCommander.java
+++ b/server/src/test/java/io/spine/server/command/model/given/commander/SampleCommander.java
@@ -21,6 +21,7 @@
package io.spine.server.command.model.given.commander;
import com.google.common.collect.ImmutableList;
+import io.spine.core.External;
import io.spine.model.contexts.projects.command.SigAddTaskToProject;
import io.spine.model.contexts.projects.command.SigAssignTask;
import io.spine.model.contexts.projects.command.SigCreateProject;
@@ -84,13 +85,13 @@ EitherOf2