From b22bdc3d816dbc61d8bb5597e5fc261bdbc55d37 Mon Sep 17 00:00:00 2001 From: Yuri Sergiichuk Date: Tue, 15 Dec 2020 09:44:38 +0200 Subject: [PATCH 1/6] Update `config` module --- .idea/copyright/TeamDev_Open_Source.xml | 2 +- buildSrc/build.gradle.kts | 6 ++++++ .../io/spine/gradle/internal/CheckVersionIncrement.kt | 6 ++++++ .../main/kotlin/io/spine/gradle/internal/IncrementGuard.kt | 6 ++++++ .../src/main/kotlin/io/spine/gradle/internal/RunBuild.kt | 6 ++++++ buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt | 6 ++++++ config | 2 +- 7 files changed, 32 insertions(+), 2 deletions(-) diff --git a/.idea/copyright/TeamDev_Open_Source.xml b/.idea/copyright/TeamDev_Open_Source.xml index 10ab82915..14d7385ef 100644 --- a/.idea/copyright/TeamDev_Open_Source.xml +++ b/.idea/copyright/TeamDev_Open_Source.xml @@ -1,6 +1,6 @@ + diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 60e0fb21d..2044a5df4 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt index 8f33cde90..a6b8ac0d4 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt index 406f71fd7..423cfb411 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt index 62c3a77aa..25d177a53 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt b/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt index 9cbdc1721..0b618cfad 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/config b/config index 767dfbc09..c74b74f04 160000 --- a/config +++ b/config @@ -1 +1 @@ -Subproject commit 767dfbc093bb99c44e631034b1c69cbc58bc3536 +Subproject commit c74b74f04e808224bcfb0ed2e7a4be925de5d273 From 8a6b6d2745c8b751398450988f0ded0c8b69b330 Mon Sep 17 00:00:00 2001 From: Yuri Sergiichuk Date: Tue, 15 Dec 2020 10:13:08 +0200 Subject: [PATCH 2/6] Bump version to 1.7.0 --- version.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version.gradle.kts b/version.gradle.kts index 4d98db4c6..2d920a85e 100644 --- a/version.gradle.kts +++ b/version.gradle.kts @@ -25,6 +25,6 @@ * `.config/gradle/dependencies.gradle`. */ -val spineBaseVersion: String by extra("1.6.16") -val spineCoreVersion: String by extra("1.6.18") -val versionToPublish: String by extra("1.6.16") +val spineBaseVersion: String by extra("1.7.0") +val spineCoreVersion: String by extra("1.7.0") +val versionToPublish: String by extra("1.7.0") From 2644e346e1b3a4ee1fb1c9ffaff2bd1ab1f19b54 Mon Sep 17 00:00:00 2001 From: Yuri Sergiichuk Date: Tue, 15 Dec 2020 12:11:45 +0200 Subject: [PATCH 3/6] Update GCP dependencies. --- datastore/build.gradle.kts | 2 +- pubsub/build.gradle.kts | 2 +- stackdriver-trace/build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/datastore/build.gradle.kts b/datastore/build.gradle.kts index 069eb5c43..e7781acaa 100644 --- a/datastore/build.gradle.kts +++ b/datastore/build.gradle.kts @@ -31,7 +31,7 @@ val spineCoreVersion: String by extra dependencies { // Google Cloud Datastore - api("com.google.cloud:google-cloud-datastore:1.105.2") { + api("com.google.cloud:google-cloud-datastore:1.105.3") { exclude(group = "com.google.protobuf") exclude(group = "com.google.guava") } diff --git a/pubsub/build.gradle.kts b/pubsub/build.gradle.kts index 2288441cd..c7fe39a61 100644 --- a/pubsub/build.gradle.kts +++ b/pubsub/build.gradle.kts @@ -20,5 +20,5 @@ dependencies { // Google Cloud Pubsub protos - api("com.google.api.grpc:proto-google-cloud-pubsub-v1:1.92.0") + api("com.google.api.grpc:proto-google-cloud-pubsub-v1:1.92.1") } diff --git a/stackdriver-trace/build.gradle.kts b/stackdriver-trace/build.gradle.kts index 2bc88e499..860776b71 100644 --- a/stackdriver-trace/build.gradle.kts +++ b/stackdriver-trace/build.gradle.kts @@ -19,5 +19,5 @@ */ dependencies { - api("com.google.cloud:google-cloud-trace:1.2.7") + api("com.google.cloud:google-cloud-trace:1.2.8") } From 949c1821707ca54d141876dd2394e70fea720eab Mon Sep 17 00:00:00 2001 From: Yuri Sergiichuk Date: Tue, 15 Dec 2020 12:13:17 +0200 Subject: [PATCH 4/6] Update versions. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 41d891b91..f1856d9eb 100644 --- a/README.md +++ b/README.md @@ -16,16 +16,16 @@ Gradle: ```kotlin dependencies { // Datastore Storage support library. - implementation("io.spine.gcloud:spine-datastore:1.6.0") + implementation("io.spine.gcloud:spine-datastore:1.7.0") // Pub/Sub messaging support library. - implementation("io.spine.gcloud:spine-pubsub:1.6.0") + implementation("io.spine.gcloud:spine-pubsub:1.7.0") // Stackdriver Trace support library. - implementation("io.spine.gcloud:spine-stackdriver-trace:1.6.0") + implementation("io.spine.gcloud:spine-stackdriver-trace:1.7.0") // Datastore-related test utilities (if needed). - implementation("io.spine.gcloud:testutil-gcloud:1.6.0") + implementation("io.spine.gcloud:testutil-gcloud:1.7.0") } ``` From 1d77cead6ab8b9e5b93d30fba29f0e54727429ec Mon Sep 17 00:00:00 2001 From: Yuri Sergiichuk Date: Tue, 15 Dec 2020 12:18:55 +0200 Subject: [PATCH 5/6] Update copyright disclaimer. --- .gitignore | 6 ++++ build.gradle.kts | 6 ++++ datastore/build.gradle.kts | 6 ++++ .../storage/datastore/DatastoreMode.java | 6 ++++ .../datastore/DatastoreStorageFactory.java | 6 ++++ .../storage/datastore/DatastoreWrapper.java | 6 ++++ .../storage/datastore/DsAggregateStorage.java | 6 ++++ .../storage/datastore/DsCatchUpStorage.java | 6 ++++ .../storage/datastore/DsColumnMapping.java | 6 ++++ .../storage/datastore/DsEntityComparator.java | 6 ++++ .../server/storage/datastore/DsFilters.java | 6 ++++ .../storage/datastore/DsIdentifier.java | 6 ++++ .../storage/datastore/DsInboxStorage.java | 6 ++++ .../storage/datastore/DsLookupByIds.java | 6 ++++ .../storage/datastore/DsLookupByQueries.java | 6 ++++ .../storage/datastore/DsMessageStorage.java | 6 ++++ .../datastore/DsProjectionStorage.java | 6 ++++ .../DsProjectionStorageDelegate.java | 6 ++++ .../storage/datastore/DsProperties.java | 6 ++++ .../storage/datastore/DsPropertyStorage.java | 6 ++++ .../storage/datastore/DsQueryIterator.java | 6 ++++ .../datastore/DsQueryPageIterator.java | 6 ++++ .../storage/datastore/DsReaderLookup.java | 6 ++++ .../storage/datastore/DsRecordStorage.java | 6 ++++ .../storage/datastore/DsSessionStorage.java | 6 ++++ .../datastore/DsShardProcessingSession.java | 6 ++++ .../datastore/DsShardedWorkRegistry.java | 6 ++++ .../server/storage/datastore/Entities.java | 6 ++++ .../datastore/EntityColumnPredicate.java | 6 ++++ .../storage/datastore/FieldMaskApplier.java | 6 ++++ .../storage/datastore/FilterAdapter.java | 6 ++++ .../server/storage/datastore/InboxPage.java | 6 ++++ .../server/storage/datastore/Indexes.java | 6 ++++ .../spine/server/storage/datastore/Kind.java | 6 ++++ .../storage/datastore/MessageColumn.java | 6 ++++ .../server/storage/datastore/ProjectId.java | 6 ++++ .../storage/datastore/QueryWithFilter.java | 6 ++++ .../server/storage/datastore/RecordId.java | 6 ++++ .../datastore/RecordStorageBuilder.java | 6 ++++ .../datastore/ShardSessionReadRequest.java | 6 ++++ .../storage/datastore/TransactionWrapper.java | 6 ++++ .../storage/datastore/package-info.java | 6 ++++ .../datastore/tenant/DatastoreTenants.java | 6 ++++ .../tenant/DefaultNamespaceConverter.java | 6 ++++ .../tenant/MultitenantNamespaceSupplier.java | 6 ++++ .../storage/datastore/tenant/Namespace.java | 6 ++++ .../datastore/tenant/NamespaceConverter.java | 6 ++++ .../datastore/tenant/NamespaceConverters.java | 6 ++++ .../datastore/tenant/NamespaceIndex.java | 6 ++++ .../datastore/tenant/NamespaceSupplier.java | 6 ++++ .../datastore/tenant/NsConverterFactory.java | 6 ++++ .../tenant/PrefixedNsConverterFactory.java | 6 ++++ .../tenant/SingleTenantNamespaceSupplier.java | 6 ++++ .../datastore/tenant/package-info.java | 6 ++++ .../storage/datastore/BigDataTester.java | 6 ++++ .../datastore/DatastorePropertiesTest.java | 6 ++++ .../DatastoreStorageFactoryBuilderTest.java | 6 ++++ .../DatastoreStorageFactoryTest.java | 6 ++++ .../datastore/DatastoreWrapperTest.java | 6 ++++ ...AggregateStorageLifecycleHandlingTest.java | 6 ++++ .../datastore/DsAggregateStorageTest.java | 6 ++++ .../DsAggregateStorageTruncationTest.java | 6 ++++ .../storage/datastore/DsCatchUpSmokeTest.java | 6 ++++ .../datastore/DsColumnMappingTest.java | 6 ++++ .../datastore/DsDeliverySmokeTest.java | 6 ++++ .../storage/datastore/DsFiltersTest.java | 6 ++++ .../storage/datastore/DsInboxStorageTest.java | 6 ++++ .../datastore/DsProjectionStorageTest.java | 6 ++++ .../datastore/DsPropertyStorageTest.java | 6 ++++ .../datastore/DsRecordStorageTest.java | 6 ++++ .../datastore/DsShardedWorkRegistryTest.java | 6 ++++ .../storage/datastore/EntitiesTest.java | 6 ++++ .../server/storage/datastore/IndexesTest.java | 6 ++++ .../server/storage/datastore/KindTest.java | 6 ++++ .../NewBoundedContextBuilderTest.java | 6 ++++ .../storage/datastore/ProjectIdTest.java | 6 ++++ .../storage/datastore/RecordIdTest.java | 6 ++++ .../datastore/TransactionWrapperTest.java | 6 ++++ .../datastore/given/CollegeEntity.java | 6 ++++ .../given/CountingDatastoreWrapper.java | 6 ++++ .../given/DatastoreWrapperTestEnv.java | 6 ++++ .../datastore/given/DsFiltersTestEnv.java | 6 ++++ .../given/DsInboxStorageTestEnv.java | 6 ++++ .../given/DsRecordStorageTestEnv.java | 6 ++++ .../datastore/given/TestColumnMapping.java | 6 ++++ .../datastore/given/TestEnvironment.java | 6 ++++ .../datastore/given/TestShardIndex.java | 6 ++++ .../aggregate/ProjectAggregateRepository.java | 6 ++++ .../given/aggregate/package-info.java | 6 ++++ .../storage/datastore/given/package-info.java | 6 ++++ .../tenant/DatastoreTenantsTest.java | 6 ++++ .../tenant/NamespaceConvertersTest.java | 6 ++++ .../datastore/tenant/NamespaceIndexTest.java | 6 ++++ .../datastore/tenant/NamespaceTest.java | 6 ++++ .../NamespaceWithCustomConverterTest.java | 6 ++++ .../PrefixedNsConverterFactoryTest.java | 6 ++++ .../SingleTenantNamespaceSupplierTest.java | 6 ++++ .../datastore/tenant/TestNamespaceIndex.java | 6 ++++ .../tenant/TestNamespaceSuppliers.java | 6 ++++ .../tenant/given/TestProjection.java | 6 ++++ .../datastore/tenant/given/package-info.java | 6 ++++ .../proto/spine/test/datastore/college.proto | 7 ++++- gcs.properties | 6 ++++ gradle.properties | 6 ++++ pubsub/build.gradle.kts | 6 ++++ .../proto/spine/messaging/pubsub/push.proto | 7 ++++- scripts/create-indexes.sh | 27 ++++++++++++++++++ scripts/fetch-test-report.sh | 26 +++++++++++++++++ scripts/install-gcloud.sh | 26 +++++++++++++++++ scripts/start-datastore.bat | 26 +++++++++++++++++ scripts/start-datastore.sh | 28 +++++++++++++++++++ scripts/upload-artifacts.sh | 28 ++++++++++++++++++- settings.gradle.kts | 6 ++++ stackdriver-trace/build.gradle.kts | 6 ++++ .../trace/stackdriver/AsyncTraceService.java | 6 ++++ .../server/trace/stackdriver/ProjectId.java | 6 ++++ .../server/trace/stackdriver/ProjectName.java | 6 ++++ .../stackdriver/ShortTraceApiString.java | 6 ++++ .../server/trace/stackdriver/SignalSpan.java | 6 ++++ .../trace/stackdriver/SpanAttribute.java | 6 ++++ .../server/trace/stackdriver/SpanId.java | 6 ++++ .../server/trace/stackdriver/SpanName.java | 6 ++++ .../trace/stackdriver/StackdriverTracer.java | 6 ++++ .../stackdriver/StackdriverTracerFactory.java | 6 ++++ .../trace/stackdriver/SyncTraceService.java | 6 ++++ .../trace/stackdriver/TraceApiString.java | 6 ++++ .../server/trace/stackdriver/TraceId.java | 6 ++++ .../trace/stackdriver/TraceService.java | 6 ++++ .../server/trace/stackdriver/Truncate.java | 6 ++++ .../trace/stackdriver/package-info.java | 6 ++++ .../trace/stackdriver/SignalSpanTest.java | 6 ++++ .../StackdriverTracerFactoryTest.java | 6 ++++ .../given/CountingInterceptor.java | 6 ++++ .../trace/stackdriver/given/package-info.java | 6 ++++ .../spine/test/stackdriver/commands.proto | 25 +++++++++++++++++ testutil-gcloud/build.gradle.kts | 6 ++++ .../storage/datastore/SpyStorageFactory.java | 6 ++++ .../TestDatastoreStorageFactory.java | 6 ++++ .../datastore/TestDatastoreWrapper.java | 6 ++++ .../storage/datastore/TestDatastores.java | 6 ++++ .../storage/datastore/package-info.java | 6 ++++ .../datastore/SpyStorageFactoryTest.java | 6 ++++ .../TestDatastoreStorageFactoryTest.java | 6 ++++ .../datastore/TestDatastoreWrapperTest.java | 6 ++++ .../storage/datastore/TestDatastoresTest.java | 6 ++++ .../given/ATestDatastoreWrapper.java | 6 ++++ .../storage/datastore/given/AnEntity.java | 6 ++++ .../storage/datastore/given/package-info.java | 6 ++++ version.gradle.kts | 6 ++++ 149 files changed, 1037 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1eb25fb11..d78b6b8da 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,12 @@ # # Copyright 2020, TeamDev. All rights reserved. # +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# # Redistribution and use in source and/or binary forms, with or without # modification, must retain the above copyright notice and the following # disclaimer. diff --git a/build.gradle.kts b/build.gradle.kts index 2275fe51d..5f1ea3f0e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/build.gradle.kts b/datastore/build.gradle.kts index e7781acaa..60fc4db83 100644 --- a/datastore/build.gradle.kts +++ b/datastore/build.gradle.kts @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreMode.java b/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreMode.java index 85268b609..3cde29c78 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreMode.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreMode.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreStorageFactory.java b/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreStorageFactory.java index ee4bd9c45..1bc9c9aaf 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreStorageFactory.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreStorageFactory.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreWrapper.java b/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreWrapper.java index 0055ad8e3..502aba1ec 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreWrapper.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DatastoreWrapper.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsAggregateStorage.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsAggregateStorage.java index 56af5958f..81f9c6a78 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsAggregateStorage.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsAggregateStorage.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsCatchUpStorage.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsCatchUpStorage.java index 30a2c20c3..4279d85c1 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsCatchUpStorage.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsCatchUpStorage.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsColumnMapping.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsColumnMapping.java index 5e30d7c91..090ec02cc 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsColumnMapping.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsColumnMapping.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsEntityComparator.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsEntityComparator.java index 986e20526..6c3123279 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsEntityComparator.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsEntityComparator.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsFilters.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsFilters.java index 53990f1ec..de298d75b 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsFilters.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsFilters.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsIdentifier.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsIdentifier.java index 724affd78..6fdcb0fca 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsIdentifier.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsIdentifier.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsInboxStorage.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsInboxStorage.java index c77a51480..a91421369 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsInboxStorage.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsInboxStorage.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsLookupByIds.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsLookupByIds.java index 2150c7680..f5f8b081f 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsLookupByIds.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsLookupByIds.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsLookupByQueries.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsLookupByQueries.java index 63f5ebf2c..20adaa8ca 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsLookupByQueries.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsLookupByQueries.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsMessageStorage.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsMessageStorage.java index e4831143d..4b8a1d3e1 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsMessageStorage.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsMessageStorage.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsProjectionStorage.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsProjectionStorage.java index fd2b6e21b..b4688df79 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsProjectionStorage.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsProjectionStorage.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsProjectionStorageDelegate.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsProjectionStorageDelegate.java index b67b8a90d..5a9851dca 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsProjectionStorageDelegate.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsProjectionStorageDelegate.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsProperties.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsProperties.java index d77083f37..fdb018e83 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsProperties.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsProperties.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsPropertyStorage.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsPropertyStorage.java index f1c7fe2e5..db10a8477 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsPropertyStorage.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsPropertyStorage.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsQueryIterator.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsQueryIterator.java index 6e3883033..51583ee19 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsQueryIterator.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsQueryIterator.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsQueryPageIterator.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsQueryPageIterator.java index 4041c4e3d..ab171c100 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsQueryPageIterator.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsQueryPageIterator.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsReaderLookup.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsReaderLookup.java index 3b1b42018..6c5b456bc 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsReaderLookup.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsReaderLookup.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsRecordStorage.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsRecordStorage.java index ea5588da9..f09ec922c 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsRecordStorage.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsRecordStorage.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsSessionStorage.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsSessionStorage.java index 26c120784..ff3dd8c96 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsSessionStorage.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsSessionStorage.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsShardProcessingSession.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsShardProcessingSession.java index 81d010c97..0a13b805a 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsShardProcessingSession.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsShardProcessingSession.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/DsShardedWorkRegistry.java b/datastore/src/main/java/io/spine/server/storage/datastore/DsShardedWorkRegistry.java index 5217a9b9d..81be534a9 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/DsShardedWorkRegistry.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/DsShardedWorkRegistry.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/Entities.java b/datastore/src/main/java/io/spine/server/storage/datastore/Entities.java index d644d4792..f88b41c22 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/Entities.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/Entities.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/EntityColumnPredicate.java b/datastore/src/main/java/io/spine/server/storage/datastore/EntityColumnPredicate.java index c26fed49c..aeac71fe6 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/EntityColumnPredicate.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/EntityColumnPredicate.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/FieldMaskApplier.java b/datastore/src/main/java/io/spine/server/storage/datastore/FieldMaskApplier.java index 78c7966bb..c3bb585f8 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/FieldMaskApplier.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/FieldMaskApplier.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/FilterAdapter.java b/datastore/src/main/java/io/spine/server/storage/datastore/FilterAdapter.java index b5fbfa339..6eedd557f 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/FilterAdapter.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/FilterAdapter.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/InboxPage.java b/datastore/src/main/java/io/spine/server/storage/datastore/InboxPage.java index 2296a8222..b65dd4b0a 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/InboxPage.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/InboxPage.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/Indexes.java b/datastore/src/main/java/io/spine/server/storage/datastore/Indexes.java index 891b979b0..37865e862 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/Indexes.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/Indexes.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/Kind.java b/datastore/src/main/java/io/spine/server/storage/datastore/Kind.java index 97695126e..4110e881e 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/Kind.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/Kind.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/MessageColumn.java b/datastore/src/main/java/io/spine/server/storage/datastore/MessageColumn.java index 31156a5ad..1733ac92f 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/MessageColumn.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/MessageColumn.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/ProjectId.java b/datastore/src/main/java/io/spine/server/storage/datastore/ProjectId.java index 78f83c79a..547098043 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/ProjectId.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/ProjectId.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/QueryWithFilter.java b/datastore/src/main/java/io/spine/server/storage/datastore/QueryWithFilter.java index 1dfc4d213..88715963b 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/QueryWithFilter.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/QueryWithFilter.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/RecordId.java b/datastore/src/main/java/io/spine/server/storage/datastore/RecordId.java index 6556902a3..36add6792 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/RecordId.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/RecordId.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/RecordStorageBuilder.java b/datastore/src/main/java/io/spine/server/storage/datastore/RecordStorageBuilder.java index cdd60f32f..4c0bdd189 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/RecordStorageBuilder.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/RecordStorageBuilder.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/ShardSessionReadRequest.java b/datastore/src/main/java/io/spine/server/storage/datastore/ShardSessionReadRequest.java index 905a68210..91d56347f 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/ShardSessionReadRequest.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/ShardSessionReadRequest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/TransactionWrapper.java b/datastore/src/main/java/io/spine/server/storage/datastore/TransactionWrapper.java index b8e3ac8c2..e0e82387c 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/TransactionWrapper.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/TransactionWrapper.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/package-info.java b/datastore/src/main/java/io/spine/server/storage/datastore/package-info.java index 1e16af9c8..2adb7526e 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/package-info.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/package-info.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/DatastoreTenants.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/DatastoreTenants.java index 3b12eb0ce..a8a653545 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/DatastoreTenants.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/DatastoreTenants.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/DefaultNamespaceConverter.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/DefaultNamespaceConverter.java index 40fdcff1c..f4f38f304 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/DefaultNamespaceConverter.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/DefaultNamespaceConverter.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/MultitenantNamespaceSupplier.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/MultitenantNamespaceSupplier.java index 2632cc26d..9acf98af5 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/MultitenantNamespaceSupplier.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/MultitenantNamespaceSupplier.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/Namespace.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/Namespace.java index 66f45d415..d99efabed 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/Namespace.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/Namespace.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceConverter.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceConverter.java index 58d9e6f66..f1186c568 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceConverter.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceConverter.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceConverters.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceConverters.java index ca4e4252b..410a0426e 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceConverters.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceConverters.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceIndex.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceIndex.java index 5f052640a..faa41df42 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceIndex.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceIndex.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceSupplier.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceSupplier.java index 76c8be419..8dbb6cbf2 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceSupplier.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NamespaceSupplier.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NsConverterFactory.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NsConverterFactory.java index 417495baf..1db5f6e68 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NsConverterFactory.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/NsConverterFactory.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/PrefixedNsConverterFactory.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/PrefixedNsConverterFactory.java index 390e2520c..c64e476b7 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/PrefixedNsConverterFactory.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/PrefixedNsConverterFactory.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/SingleTenantNamespaceSupplier.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/SingleTenantNamespaceSupplier.java index 73564ceb7..0b13ccbcc 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/SingleTenantNamespaceSupplier.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/SingleTenantNamespaceSupplier.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/package-info.java b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/package-info.java index 1a124e6f0..c40ab9f8f 100644 --- a/datastore/src/main/java/io/spine/server/storage/datastore/tenant/package-info.java +++ b/datastore/src/main/java/io/spine/server/storage/datastore/tenant/package-info.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/BigDataTester.java b/datastore/src/test/java/io/spine/server/storage/datastore/BigDataTester.java index 2497b1ce8..ed23b4ac4 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/BigDataTester.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/BigDataTester.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DatastorePropertiesTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DatastorePropertiesTest.java index adecc8efa..f295b6a99 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DatastorePropertiesTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DatastorePropertiesTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreStorageFactoryBuilderTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreStorageFactoryBuilderTest.java index ea0842ec2..416cc796d 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreStorageFactoryBuilderTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreStorageFactoryBuilderTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreStorageFactoryTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreStorageFactoryTest.java index 702f1f9f8..6b95a9c34 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreStorageFactoryTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreStorageFactoryTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreWrapperTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreWrapperTest.java index aa8f5d4e0..3476cc1ec 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreWrapperTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DatastoreWrapperTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageLifecycleHandlingTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageLifecycleHandlingTest.java index 8b6b22758..65170a20b 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageLifecycleHandlingTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageLifecycleHandlingTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageTest.java index 4408121b3..4abcc6a98 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageTruncationTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageTruncationTest.java index 109fd43d1..54a2465f3 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageTruncationTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsAggregateStorageTruncationTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsCatchUpSmokeTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsCatchUpSmokeTest.java index f1723c3a6..4f2bbc6f9 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsCatchUpSmokeTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsCatchUpSmokeTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsColumnMappingTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsColumnMappingTest.java index 05923795f..f9b951959 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsColumnMappingTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsColumnMappingTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsDeliverySmokeTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsDeliverySmokeTest.java index 08b2c3f0e..41862ad58 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsDeliverySmokeTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsDeliverySmokeTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsFiltersTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsFiltersTest.java index b55b0addc..f7f7d9b6e 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsFiltersTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsFiltersTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsInboxStorageTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsInboxStorageTest.java index f89cf6f19..148f8e21c 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsInboxStorageTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsInboxStorageTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsProjectionStorageTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsProjectionStorageTest.java index cc2d0acbe..eb7242711 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsProjectionStorageTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsProjectionStorageTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsPropertyStorageTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsPropertyStorageTest.java index f1211ca2e..e39900b57 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsPropertyStorageTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsPropertyStorageTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsRecordStorageTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsRecordStorageTest.java index dc1d3fe63..e47b15662 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsRecordStorageTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsRecordStorageTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/DsShardedWorkRegistryTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/DsShardedWorkRegistryTest.java index 159b1f1d3..1995dcb33 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/DsShardedWorkRegistryTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/DsShardedWorkRegistryTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/EntitiesTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/EntitiesTest.java index 1a17b9718..8ea567e45 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/EntitiesTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/EntitiesTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/IndexesTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/IndexesTest.java index 5b0e4c658..44ab28c0d 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/IndexesTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/IndexesTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/KindTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/KindTest.java index be331ef09..85e4d2ed6 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/KindTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/KindTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/NewBoundedContextBuilderTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/NewBoundedContextBuilderTest.java index bb851e80d..6d6b03270 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/NewBoundedContextBuilderTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/NewBoundedContextBuilderTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/ProjectIdTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/ProjectIdTest.java index 9506f7fb2..8c414c391 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/ProjectIdTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/ProjectIdTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/RecordIdTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/RecordIdTest.java index b222f4343..7e44539d8 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/RecordIdTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/RecordIdTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/TransactionWrapperTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/TransactionWrapperTest.java index 7caecf991..c7a03001a 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/TransactionWrapperTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/TransactionWrapperTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/CollegeEntity.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/CollegeEntity.java index a4d6da466..1f86a9755 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/CollegeEntity.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/CollegeEntity.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/CountingDatastoreWrapper.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/CountingDatastoreWrapper.java index f127d0341..777468840 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/CountingDatastoreWrapper.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/CountingDatastoreWrapper.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/DatastoreWrapperTestEnv.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/DatastoreWrapperTestEnv.java index 1191676ed..bb13d240a 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/DatastoreWrapperTestEnv.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/DatastoreWrapperTestEnv.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/DsFiltersTestEnv.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/DsFiltersTestEnv.java index a03b5dde1..65057fd76 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/DsFiltersTestEnv.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/DsFiltersTestEnv.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/DsInboxStorageTestEnv.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/DsInboxStorageTestEnv.java index e27e285f3..defb9fe57 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/DsInboxStorageTestEnv.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/DsInboxStorageTestEnv.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/DsRecordStorageTestEnv.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/DsRecordStorageTestEnv.java index 6153ff876..d23862b4c 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/DsRecordStorageTestEnv.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/DsRecordStorageTestEnv.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/TestColumnMapping.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/TestColumnMapping.java index 55b2968b2..2ba193d48 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/TestColumnMapping.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/TestColumnMapping.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/TestEnvironment.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/TestEnvironment.java index 4dbad4c77..f64b55d97 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/TestEnvironment.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/TestEnvironment.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/TestShardIndex.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/TestShardIndex.java index 341967127..3b6ae3657 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/TestShardIndex.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/TestShardIndex.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/aggregate/ProjectAggregateRepository.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/aggregate/ProjectAggregateRepository.java index 08d6f5e3e..17d8dcbe9 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/aggregate/ProjectAggregateRepository.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/aggregate/ProjectAggregateRepository.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/aggregate/package-info.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/aggregate/package-info.java index e30fb13ca..cef6a3b20 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/aggregate/package-info.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/aggregate/package-info.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/given/package-info.java b/datastore/src/test/java/io/spine/server/storage/datastore/given/package-info.java index be01ae0ea..565ad9a1f 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/given/package-info.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/given/package-info.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/DatastoreTenantsTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/DatastoreTenantsTest.java index 15b5f5437..2ba2f8133 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/DatastoreTenantsTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/DatastoreTenantsTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceConvertersTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceConvertersTest.java index 61ae93b38..f18260618 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceConvertersTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceConvertersTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceIndexTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceIndexTest.java index c98f02ecc..ae6efdc6f 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceIndexTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceIndexTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceTest.java index b6a7b1f90..45ae5f869 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceWithCustomConverterTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceWithCustomConverterTest.java index 8489ed138..14fa32e30 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceWithCustomConverterTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/NamespaceWithCustomConverterTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/PrefixedNsConverterFactoryTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/PrefixedNsConverterFactoryTest.java index 4ae55ffa0..56385ad15 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/PrefixedNsConverterFactoryTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/PrefixedNsConverterFactoryTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/SingleTenantNamespaceSupplierTest.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/SingleTenantNamespaceSupplierTest.java index eae6de511..d3e8e3e0c 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/SingleTenantNamespaceSupplierTest.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/SingleTenantNamespaceSupplierTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/TestNamespaceIndex.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/TestNamespaceIndex.java index 5c1594fde..e0c978ef2 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/TestNamespaceIndex.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/TestNamespaceIndex.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/TestNamespaceSuppliers.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/TestNamespaceSuppliers.java index efc211834..0d2176bd9 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/TestNamespaceSuppliers.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/TestNamespaceSuppliers.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/given/TestProjection.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/given/TestProjection.java index efc3ba5a9..bc37c1982 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/given/TestProjection.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/given/TestProjection.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/given/package-info.java b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/given/package-info.java index 4d2007489..b62ef3a6d 100644 --- a/datastore/src/test/java/io/spine/server/storage/datastore/tenant/given/package-info.java +++ b/datastore/src/test/java/io/spine/server/storage/datastore/tenant/given/package-info.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/datastore/src/test/proto/spine/test/datastore/college.proto b/datastore/src/test/proto/spine/test/datastore/college.proto index b3abae426..9955cddb3 100644 --- a/datastore/src/test/proto/spine/test/datastore/college.proto +++ b/datastore/src/test/proto/spine/test/datastore/college.proto @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. @@ -17,7 +23,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - syntax = "proto3"; package spine.test.datastore; diff --git a/gcs.properties b/gcs.properties index e23ef00a3..567acce90 100644 --- a/gcs.properties +++ b/gcs.properties @@ -1,6 +1,12 @@ # # Copyright 2020, TeamDev. All rights reserved. # +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# # Redistribution and use in source and/or binary forms, with or without # modification, must retain the above copyright notice and the following # disclaimer. diff --git a/gradle.properties b/gradle.properties index 0e4139c57..5b631438c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,12 @@ # # Copyright 2020, TeamDev. All rights reserved. # +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# # Redistribution and use in source and/or binary forms, with or without # modification, must retain the above copyright notice and the following # disclaimer. diff --git a/pubsub/build.gradle.kts b/pubsub/build.gradle.kts index c7fe39a61..e38bea3fe 100644 --- a/pubsub/build.gradle.kts +++ b/pubsub/build.gradle.kts @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/pubsub/src/main/proto/spine/messaging/pubsub/push.proto b/pubsub/src/main/proto/spine/messaging/pubsub/push.proto index 63a2f5043..0beb0f732 100644 --- a/pubsub/src/main/proto/spine/messaging/pubsub/push.proto +++ b/pubsub/src/main/proto/spine/messaging/pubsub/push.proto @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. @@ -17,7 +23,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - syntax = "proto3"; package spine.messaging.pubsub; diff --git a/scripts/create-indexes.sh b/scripts/create-indexes.sh index 5c34d2179..b0ce8b770 100755 --- a/scripts/create-indexes.sh +++ b/scripts/create-indexes.sh @@ -1,3 +1,30 @@ #!/usr/bin/env bash + +# +# Copyright 2020, TeamDev. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. +# + # Creates Google Cloud Datastore indexes required by datastore module tests. gcloud datastore indexes create ./datastore/src/test/config/index.yaml diff --git a/scripts/fetch-test-report.sh b/scripts/fetch-test-report.sh index c3f6c27a1..369a4e558 100755 --- a/scripts/fetch-test-report.sh +++ b/scripts/fetch-test-report.sh @@ -1,5 +1,31 @@ #!/usr/bin/env bash +# +# Copyright 2020, TeamDev. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. +# + # Downloads the Travis build results from Google Cloud Storage and opens the directory with them. # The report is downloaded to `test-reports` directory. # diff --git a/scripts/install-gcloud.sh b/scripts/install-gcloud.sh index e29a78949..f214872a4 100644 --- a/scripts/install-gcloud.sh +++ b/scripts/install-gcloud.sh @@ -1,5 +1,31 @@ #!/usr/bin/env bash +# +# Copyright 2020, TeamDev. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. +# + # Installs the Google Cloud SDK. # # All output is ignored as the installation process is overly verbose. diff --git a/scripts/start-datastore.bat b/scripts/start-datastore.bat index f4bf0957f..fa86bf193 100644 --- a/scripts/start-datastore.bat +++ b/scripts/start-datastore.bat @@ -1 +1,27 @@ +@REM +@REM Copyright 2020, TeamDev. All rights reserved. +@REM +@REM Licensed under the Apache License, Version 2.0 (the "License"); +@REM you may not use this file except in compliance with the License. +@REM You may obtain a copy of the License at +@REM +@REM http://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Redistribution and use in source and/or binary forms, with or without +@REM modification, must retain the above copyright notice and the following +@REM disclaimer. +@REM +@REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +@REM "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +@REM LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +@REM A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +@REM OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +@REM SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +@REM LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +@REM DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +@REM THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +@REM (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +@REM OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +@REM + gcloud beta emulators datastore start --project=test-project --consistency 1.0 --no-store-on-disk diff --git a/scripts/start-datastore.sh b/scripts/start-datastore.sh index f4bf0957f..4c954fb9d 100755 --- a/scripts/start-datastore.sh +++ b/scripts/start-datastore.sh @@ -1 +1,29 @@ +#!/usr/bin/env bash + +# +# Copyright 2020, TeamDev. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. +# + gcloud beta emulators datastore start --project=test-project --consistency 1.0 --no-store-on-disk diff --git a/scripts/upload-artifacts.sh b/scripts/upload-artifacts.sh index 5d56f59dc..d4538e474 100644 --- a/scripts/upload-artifacts.sh +++ b/scripts/upload-artifacts.sh @@ -1,4 +1,30 @@ -#!/bin/bash +#!/usr/bin/env bash + +# +# Copyright 2020, TeamDev. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# 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. +# # This script uploads the Travis artifacts to Google Cloud Storage. diff --git a/settings.gradle.kts b/settings.gradle.kts index 97d55a74b..3ab137669 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/build.gradle.kts b/stackdriver-trace/build.gradle.kts index 860776b71..a88cbfc4c 100644 --- a/stackdriver-trace/build.gradle.kts +++ b/stackdriver-trace/build.gradle.kts @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/AsyncTraceService.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/AsyncTraceService.java index 5f372ffa0..f1f762f7a 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/AsyncTraceService.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/AsyncTraceService.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ProjectId.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ProjectId.java index 31e2add27..35e22cc0c 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ProjectId.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ProjectId.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ProjectName.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ProjectName.java index 46cb7c3d6..df3bc4dc2 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ProjectName.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ProjectName.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ShortTraceApiString.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ShortTraceApiString.java index e92e2eae8..b9f7591bf 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ShortTraceApiString.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/ShortTraceApiString.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SignalSpan.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SignalSpan.java index 4fd525018..2724de4bd 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SignalSpan.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SignalSpan.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanAttribute.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanAttribute.java index 8d1b9c8f7..0a558b3bc 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanAttribute.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanAttribute.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanId.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanId.java index 34022d236..79e527c39 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanId.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanId.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanName.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanName.java index 9c5b73db1..9da92d665 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanName.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SpanName.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/StackdriverTracer.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/StackdriverTracer.java index 021ed05af..d54d18fab 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/StackdriverTracer.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/StackdriverTracer.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/StackdriverTracerFactory.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/StackdriverTracerFactory.java index 294b91fa3..ae7844fc4 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/StackdriverTracerFactory.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/StackdriverTracerFactory.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SyncTraceService.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SyncTraceService.java index d0cf3407a..b03e1476d 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SyncTraceService.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/SyncTraceService.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceApiString.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceApiString.java index 526f28e44..77face176 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceApiString.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceApiString.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceId.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceId.java index 73e13ab20..2705424de 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceId.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceId.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceService.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceService.java index 8e06597ca..eab6847f3 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceService.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/TraceService.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/Truncate.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/Truncate.java index 4eb8acb2d..8687d5026 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/Truncate.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/Truncate.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/package-info.java b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/package-info.java index bd9a499cf..540b795f6 100644 --- a/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/package-info.java +++ b/stackdriver-trace/src/main/java/io/spine/server/trace/stackdriver/package-info.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/SignalSpanTest.java b/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/SignalSpanTest.java index b74d45716..6e9642502 100644 --- a/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/SignalSpanTest.java +++ b/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/SignalSpanTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/StackdriverTracerFactoryTest.java b/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/StackdriverTracerFactoryTest.java index 3a86b21d8..09c993a94 100644 --- a/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/StackdriverTracerFactoryTest.java +++ b/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/StackdriverTracerFactoryTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/given/CountingInterceptor.java b/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/given/CountingInterceptor.java index 7874c77a2..440385a2c 100644 --- a/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/given/CountingInterceptor.java +++ b/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/given/CountingInterceptor.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/given/package-info.java b/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/given/package-info.java index 44480d436..9d2ee1c50 100644 --- a/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/given/package-info.java +++ b/stackdriver-trace/src/test/java/io/spine/server/trace/stackdriver/given/package-info.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/stackdriver-trace/src/test/proto/spine/test/stackdriver/commands.proto b/stackdriver-trace/src/test/proto/spine/test/stackdriver/commands.proto index b03d6a547..578654f1e 100644 --- a/stackdriver-trace/src/test/proto/spine/test/stackdriver/commands.proto +++ b/stackdriver-trace/src/test/proto/spine/test/stackdriver/commands.proto @@ -1,3 +1,28 @@ +/* + * Copyright 2020, TeamDev. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * 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. + */ syntax = "proto3"; package spine.test.stackdriver; diff --git a/testutil-gcloud/build.gradle.kts b/testutil-gcloud/build.gradle.kts index 0b3e3e96e..402b4c58b 100644 --- a/testutil-gcloud/build.gradle.kts +++ b/testutil-gcloud/build.gradle.kts @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/SpyStorageFactory.java b/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/SpyStorageFactory.java index 1e297c4ff..5e6974e48 100644 --- a/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/SpyStorageFactory.java +++ b/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/SpyStorageFactory.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastoreStorageFactory.java b/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastoreStorageFactory.java index 38b0a2db2..68e26fe09 100644 --- a/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastoreStorageFactory.java +++ b/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastoreStorageFactory.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastoreWrapper.java b/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastoreWrapper.java index b31d5baf9..bbc97f684 100644 --- a/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastoreWrapper.java +++ b/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastoreWrapper.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastores.java b/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastores.java index 1a56c0770..0e99025c1 100644 --- a/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastores.java +++ b/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/TestDatastores.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/package-info.java b/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/package-info.java index 78e703a9d..7cde5fd13 100644 --- a/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/package-info.java +++ b/testutil-gcloud/src/main/java/io/spine/testing/server/storage/datastore/package-info.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/SpyStorageFactoryTest.java b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/SpyStorageFactoryTest.java index b3c50314e..eca0ef415 100644 --- a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/SpyStorageFactoryTest.java +++ b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/SpyStorageFactoryTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoreStorageFactoryTest.java b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoreStorageFactoryTest.java index 08db580b3..3694dd62d 100644 --- a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoreStorageFactoryTest.java +++ b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoreStorageFactoryTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoreWrapperTest.java b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoreWrapperTest.java index 1b360a255..338f810dd 100644 --- a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoreWrapperTest.java +++ b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoreWrapperTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoresTest.java b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoresTest.java index f643003b0..614830c4d 100644 --- a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoresTest.java +++ b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/TestDatastoresTest.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/ATestDatastoreWrapper.java b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/ATestDatastoreWrapper.java index b0251cb6a..49ebc8c08 100644 --- a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/ATestDatastoreWrapper.java +++ b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/ATestDatastoreWrapper.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/AnEntity.java b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/AnEntity.java index 553ac1598..ec9119ce9 100644 --- a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/AnEntity.java +++ b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/AnEntity.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/package-info.java b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/package-info.java index 4ec9ce269..b3259a5da 100644 --- a/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/package-info.java +++ b/testutil-gcloud/src/test/java/io/spine/testing/server/storage/datastore/given/package-info.java @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. diff --git a/version.gradle.kts b/version.gradle.kts index 2d920a85e..3f9a78d2d 100644 --- a/version.gradle.kts +++ b/version.gradle.kts @@ -1,6 +1,12 @@ /* * Copyright 2020, TeamDev. All rights reserved. * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * * Redistribution and use in source and/or binary forms, with or without * modification, must retain the above copyright notice and the following * disclaimer. From 4a331c472e6750b7a53f1eaae69760830881b9e1 Mon Sep 17 00:00:00 2001 From: Yuri Sergiichuk Date: Tue, 15 Dec 2020 12:25:11 +0200 Subject: [PATCH 6/6] Update reports. --- license-report.md | 200 ++++++++++++++++++++++++++-------------------- pom.xml | 14 ++-- 2 files changed, 120 insertions(+), 94 deletions(-) diff --git a/license-report.md b/license-report.md index 0b117ab0c..5d3e28852 100644 --- a/license-report.md +++ b/license-report.md @@ -1,9 +1,10 @@ -# Dependencies of `io.spine.gcloud:spine-datastore:1.6.16` +# Dependencies of `io.spine.gcloud:spine-datastore:1.7.0` ## Runtime -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.11.3 +1. **Group:** com.fasterxml.jackson **Name:** jackson-bom **Version:** 2.12.0 **No license information found** +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.12.0 * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **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) * **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) @@ -16,19 +17,19 @@ * **POM Project URL:** [https://github.com/googleapis/api-common-java](https://github.com/googleapis/api-common-java) * **POM License: BSD** - [https://github.com/googleapis/api-common-java/blob/master/LICENSE](https://github.com/googleapis/api-common-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax **Version:** 1.60.0 +1. **Group:** com.google.api **Name:** gax **Version:** 1.60.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax-httpjson **Version:** 0.77.0 +1. **Group:** com.google.api **Name:** gax-httpjson **Version:** 0.77.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api-client **Name:** google-api-client **Version:** 1.30.11 +1. **Group:** com.google.api-client **Name:** google-api-client **Version:** 1.31.1 * **Manifest Project URL:** [https://developers.google.com/api-client-library/java/](https://developers.google.com/api-client-library/java/) * **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.api.grpc **Name:** proto-google-cloud-datastore-v1 **Version:** 0.88.2 +1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-datastore-v1 **Version:** 0.88.3 * **POM Project URL:** [https://github.com/googleapis/java-datastore/proto-google-cloud-datastore-v1](https://github.com/googleapis/java-datastore/proto-google-cloud-datastore-v1) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -50,15 +51,15 @@ * **POM Project URL:** [https://github.com/google/auto/tree/master/value](https://github.com/google/auto/tree/master/value) * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-core **Version:** 1.93.10 +1. **Group:** com.google.cloud **Name:** google-cloud-core **Version:** 1.94.0 * **POM Project URL:** [https://github.com/googleapis/java-core](https://github.com/googleapis/java-core) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-core-http **Version:** 1.93.10 +1. **Group:** com.google.cloud **Name:** google-cloud-core-http **Version:** 1.94.0 * **POM Project URL:** [https://github.com/googleapis/java-core](https://github.com/googleapis/java-core) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-datastore **Version:** 1.105.2 +1. **Group:** com.google.cloud **Name:** google-cloud-datastore **Version:** 1.105.3 * **POM Project URL:** [https://github.com/googleapis/java-datastore](https://github.com/googleapis/java-datastore) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -98,6 +99,10 @@ * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **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.http-client **Name:** google-http-client-apache-v2 **Version:** 1.38.0 + * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) + * **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.http-client **Name:** google-http-client-appengine **Version:** 1.38.0 * **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) @@ -131,11 +136,11 @@ * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **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.33.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.34.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.33.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.34.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) @@ -204,7 +209,8 @@ * **POM Project URL:** [http://jcommander.org](http://jcommander.org) * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.11.3 +1. **Group:** com.fasterxml.jackson **Name:** jackson-bom **Version:** 2.12.0 **No license information found** +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.12.0 * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **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) * **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) @@ -225,19 +231,19 @@ * **POM Project URL:** [https://github.com/googleapis/api-common-java](https://github.com/googleapis/api-common-java) * **POM License: BSD** - [https://github.com/googleapis/api-common-java/blob/master/LICENSE](https://github.com/googleapis/api-common-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax **Version:** 1.60.0 +1. **Group:** com.google.api **Name:** gax **Version:** 1.60.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax-httpjson **Version:** 0.77.0 +1. **Group:** com.google.api **Name:** gax-httpjson **Version:** 0.77.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api-client **Name:** google-api-client **Version:** 1.30.11 +1. **Group:** com.google.api-client **Name:** google-api-client **Version:** 1.31.1 * **Manifest Project URL:** [https://developers.google.com/api-client-library/java/](https://developers.google.com/api-client-library/java/) * **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.api.grpc **Name:** proto-google-cloud-datastore-v1 **Version:** 0.88.2 +1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-datastore-v1 **Version:** 0.88.3 * **POM Project URL:** [https://github.com/googleapis/java-datastore/proto-google-cloud-datastore-v1](https://github.com/googleapis/java-datastore/proto-google-cloud-datastore-v1) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -270,15 +276,15 @@ * **POM Project URL:** [https://github.com/google/auto/tree/master/value](https://github.com/google/auto/tree/master/value) * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-core **Version:** 1.93.10 +1. **Group:** com.google.cloud **Name:** google-cloud-core **Version:** 1.94.0 * **POM Project URL:** [https://github.com/googleapis/java-core](https://github.com/googleapis/java-core) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-core-http **Version:** 1.93.10 +1. **Group:** com.google.cloud **Name:** google-cloud-core-http **Version:** 1.94.0 * **POM Project URL:** [https://github.com/googleapis/java-core](https://github.com/googleapis/java-core) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-datastore **Version:** 1.105.2 +1. **Group:** com.google.cloud **Name:** google-cloud-datastore **Version:** 1.105.3 * **POM Project URL:** [https://github.com/googleapis/java-datastore](https://github.com/googleapis/java-datastore) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -344,6 +350,10 @@ * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **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.http-client **Name:** google-http-client-apache-v2 **Version:** 1.38.0 + * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) + * **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.http-client **Name:** google-http-client-appengine **Version:** 1.38.0 * **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) @@ -407,11 +417,11 @@ * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **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.33.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.34.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.33.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.34.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) @@ -582,12 +592,12 @@ The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Fri Dec 04 14:39:18 EET 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Dec 15 12:20:09 EET 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.gcloud:spine-pubsub:1.6.16` +# Dependencies of `io.spine.gcloud:spine-pubsub:1.7.0` ## Runtime 1. **Group:** com.google.android **Name:** annotations **Version:** 4.1.1.4 @@ -598,7 +608,7 @@ This report was generated on **Fri Dec 04 14:39:18 EET 2020** using [Gradle-Lice * **POM Project URL:** [https://github.com/googleapis/api-common-java](https://github.com/googleapis/api-common-java) * **POM License: BSD** - [https://github.com/googleapis/api-common-java/blob/master/LICENSE](https://github.com/googleapis/api-common-java/blob/master/LICENSE) -1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-pubsub-v1 **Version:** 1.92.0 +1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-pubsub-v1 **Version:** 1.92.1 * **POM Project URL:** [https://github.com/googleapis/java-pubsub/proto-google-cloud-pubsub-v1](https://github.com/googleapis/java-pubsub/proto-google-cloud-pubsub-v1) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -643,7 +653,7 @@ This report was generated on **Fri Dec 04 14:39:18 EET 2020** using [Gradle-Lice * **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.13.0 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.14.0 * **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) @@ -719,7 +729,7 @@ This report was generated on **Fri Dec 04 14:39:18 EET 2020** using [Gradle-Lice * **POM Project URL:** [https://github.com/googleapis/api-common-java](https://github.com/googleapis/api-common-java) * **POM License: BSD** - [https://github.com/googleapis/api-common-java/blob/master/LICENSE](https://github.com/googleapis/api-common-java/blob/master/LICENSE) -1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-pubsub-v1 **Version:** 1.92.0 +1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-pubsub-v1 **Version:** 1.92.1 * **POM Project URL:** [https://github.com/googleapis/java-pubsub/proto-google-cloud-pubsub-v1](https://github.com/googleapis/java-pubsub/proto-google-cloud-pubsub-v1) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -801,7 +811,7 @@ This report was generated on **Fri Dec 04 14:39:18 EET 2020** using [Gradle-Lice * **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.13.0 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.14.0 * **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) @@ -993,15 +1003,16 @@ This report was generated on **Fri Dec 04 14:39:18 EET 2020** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Dec 15 12:20:20 EET 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.gcloud:spine-stackdriver-trace:1.6.16` +# Dependencies of `io.spine.gcloud:spine-stackdriver-trace:1.7.0` ## Runtime -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.11.3 +1. **Group:** com.fasterxml.jackson **Name:** jackson-bom **Version:** 2.12.0 **No license information found** +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.12.0 * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **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) * **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) @@ -1014,19 +1025,19 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice * **POM Project URL:** [https://github.com/googleapis/api-common-java](https://github.com/googleapis/api-common-java) * **POM License: BSD** - [https://github.com/googleapis/api-common-java/blob/master/LICENSE](https://github.com/googleapis/api-common-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax **Version:** 1.60.0 +1. **Group:** com.google.api **Name:** gax **Version:** 1.60.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax-grpc **Version:** 1.60.0 +1. **Group:** com.google.api **Name:** gax-grpc **Version:** 1.60.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-trace-v1 **Version:** 1.2.7 +1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-trace-v1 **Version:** 1.2.8 * **POM Project URL:** [https://github.com/googleapis/java-core/proto-google-cloud-trace-v1](https://github.com/googleapis/java-core/proto-google-cloud-trace-v1) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-trace-v2 **Version:** 1.2.7 +1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-trace-v2 **Version:** 1.2.8 * **POM Project URL:** [https://github.com/googleapis/java-core/proto-google-cloud-trace-v2](https://github.com/googleapis/java-core/proto-google-cloud-trace-v2) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1044,7 +1055,7 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice * **POM Project URL:** [https://github.com/google/auto/tree/master/value](https://github.com/google/auto/tree/master/value) * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-trace **Version:** 1.2.7 +1. **Group:** com.google.cloud **Name:** google-cloud-trace **Version:** 1.2.8 * **POM Project URL:** [https://github.com/googleapis/java-trace](https://github.com/googleapis/java-trace) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1088,11 +1099,11 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice * **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.13.0 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.14.0 * **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.13.0 +1. **Group:** com.google.protobuf **Name:** protobuf-java-util **Version:** 3.14.0 * **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) @@ -1104,43 +1115,43 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **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-alts **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-alts **Version:** 1.34.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.33.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.34.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-auth **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-auth **Version:** 1.34.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.33.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.34.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.33.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.34.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-grpclb **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-grpclb **Version:** 1.34.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-netty-shaded **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-netty-shaded **Version:** 1.34.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-protobuf **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.34.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-protobuf-lite **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.34.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-stub **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.34.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) @@ -1201,7 +1212,8 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice * **POM Project URL:** [http://jcommander.org](http://jcommander.org) * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.11.3 +1. **Group:** com.fasterxml.jackson **Name:** jackson-bom **Version:** 2.12.0 **No license information found** +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.12.0 * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **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) * **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) @@ -1222,19 +1234,19 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice * **POM Project URL:** [https://github.com/googleapis/api-common-java](https://github.com/googleapis/api-common-java) * **POM License: BSD** - [https://github.com/googleapis/api-common-java/blob/master/LICENSE](https://github.com/googleapis/api-common-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax **Version:** 1.60.0 +1. **Group:** com.google.api **Name:** gax **Version:** 1.60.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax-grpc **Version:** 1.60.0 +1. **Group:** com.google.api **Name:** gax-grpc **Version:** 1.60.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-trace-v1 **Version:** 1.2.7 +1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-trace-v1 **Version:** 1.2.8 * **POM Project URL:** [https://github.com/googleapis/java-core/proto-google-cloud-trace-v1](https://github.com/googleapis/java-core/proto-google-cloud-trace-v1) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-trace-v2 **Version:** 1.2.7 +1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-trace-v2 **Version:** 1.2.8 * **POM Project URL:** [https://github.com/googleapis/java-core/proto-google-cloud-trace-v2](https://github.com/googleapis/java-core/proto-google-cloud-trace-v2) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1263,7 +1275,7 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice * **POM Project URL:** [https://github.com/google/auto/tree/master/value](https://github.com/google/auto/tree/master/value) * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-trace **Version:** 1.2.7 +1. **Group:** com.google.cloud **Name:** google-cloud-trace **Version:** 1.2.8 * **POM Project URL:** [https://github.com/googleapis/java-trace](https://github.com/googleapis/java-trace) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1333,7 +1345,7 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice * **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.13.0 +1. **Group:** com.google.protobuf **Name:** protobuf-java **Version:** 3.14.0 * **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) @@ -1346,6 +1358,10 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice * **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.14.0 + * **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:** protoc **Version:** 3.13.0 * **POM 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) @@ -1379,43 +1395,43 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **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-alts **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-alts **Version:** 1.34.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.33.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.34.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-auth **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-auth **Version:** 1.34.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.33.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.34.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.33.1 +1. **Group:** io.grpc **Name:** grpc-core **Version:** 1.34.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-grpclb **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-grpclb **Version:** 1.34.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-netty-shaded **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-netty-shaded **Version:** 1.34.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-protobuf **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-protobuf **Version:** 1.34.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-protobuf-lite **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-protobuf-lite **Version:** 1.34.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-stub **Version:** 1.33.1 +1. **Group:** io.grpc **Name:** grpc-stub **Version:** 1.34.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) @@ -1578,15 +1594,16 @@ This report was generated on **Fri Dec 04 14:39:26 EET 2020** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). +This report was generated on **Tue Dec 15 12:20:43 EET 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.gcloud:spine-testutil-gcloud:1.6.16` +# Dependencies of `io.spine.gcloud:spine-testutil-gcloud:1.7.0` ## Runtime -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.11.3 +1. **Group:** com.fasterxml.jackson **Name:** jackson-bom **Version:** 2.12.0 **No license information found** +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.12.0 * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **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) * **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) @@ -1599,19 +1616,19 @@ This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-Lice * **POM Project URL:** [https://github.com/googleapis/api-common-java](https://github.com/googleapis/api-common-java) * **POM License: BSD** - [https://github.com/googleapis/api-common-java/blob/master/LICENSE](https://github.com/googleapis/api-common-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax **Version:** 1.60.0 +1. **Group:** com.google.api **Name:** gax **Version:** 1.60.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax-httpjson **Version:** 0.77.0 +1. **Group:** com.google.api **Name:** gax-httpjson **Version:** 0.77.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api-client **Name:** google-api-client **Version:** 1.30.11 +1. **Group:** com.google.api-client **Name:** google-api-client **Version:** 1.31.1 * **Manifest Project URL:** [https://developers.google.com/api-client-library/java/](https://developers.google.com/api-client-library/java/) * **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.api.grpc **Name:** proto-google-cloud-datastore-v1 **Version:** 0.88.2 +1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-datastore-v1 **Version:** 0.88.3 * **POM Project URL:** [https://github.com/googleapis/java-datastore/proto-google-cloud-datastore-v1](https://github.com/googleapis/java-datastore/proto-google-cloud-datastore-v1) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1633,15 +1650,15 @@ This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-Lice * **POM Project URL:** [https://github.com/google/auto/tree/master/value](https://github.com/google/auto/tree/master/value) * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-core **Version:** 1.93.10 +1. **Group:** com.google.cloud **Name:** google-cloud-core **Version:** 1.94.0 * **POM Project URL:** [https://github.com/googleapis/java-core](https://github.com/googleapis/java-core) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-core-http **Version:** 1.93.10 +1. **Group:** com.google.cloud **Name:** google-cloud-core-http **Version:** 1.94.0 * **POM Project URL:** [https://github.com/googleapis/java-core](https://github.com/googleapis/java-core) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-datastore **Version:** 1.105.2 +1. **Group:** com.google.cloud **Name:** google-cloud-datastore **Version:** 1.105.3 * **POM Project URL:** [https://github.com/googleapis/java-datastore](https://github.com/googleapis/java-datastore) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1681,6 +1698,10 @@ This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-Lice * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **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.http-client **Name:** google-http-client-apache-v2 **Version:** 1.38.0 + * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) + * **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.http-client **Name:** google-http-client-appengine **Version:** 1.38.0 * **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) @@ -1714,11 +1735,11 @@ This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-Lice * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **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.33.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.34.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.33.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.34.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) @@ -1787,7 +1808,8 @@ This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-Lice * **POM Project URL:** [http://jcommander.org](http://jcommander.org) * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.11.3 +1. **Group:** com.fasterxml.jackson **Name:** jackson-bom **Version:** 2.12.0 **No license information found** +1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.12.0 * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **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) * **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) @@ -1808,19 +1830,19 @@ This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-Lice * **POM Project URL:** [https://github.com/googleapis/api-common-java](https://github.com/googleapis/api-common-java) * **POM License: BSD** - [https://github.com/googleapis/api-common-java/blob/master/LICENSE](https://github.com/googleapis/api-common-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax **Version:** 1.60.0 +1. **Group:** com.google.api **Name:** gax **Version:** 1.60.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api **Name:** gax-httpjson **Version:** 0.77.0 +1. **Group:** com.google.api **Name:** gax-httpjson **Version:** 0.77.1 * **POM Project URL:** [https://github.com/googleapis/gax-java](https://github.com/googleapis/gax-java) * **POM License: BSD** - [https://github.com/googleapis/gax-java/blob/master/LICENSE](https://github.com/googleapis/gax-java/blob/master/LICENSE) -1. **Group:** com.google.api-client **Name:** google-api-client **Version:** 1.30.11 +1. **Group:** com.google.api-client **Name:** google-api-client **Version:** 1.31.1 * **Manifest Project URL:** [https://developers.google.com/api-client-library/java/](https://developers.google.com/api-client-library/java/) * **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.api.grpc **Name:** proto-google-cloud-datastore-v1 **Version:** 0.88.2 +1. **Group:** com.google.api.grpc **Name:** proto-google-cloud-datastore-v1 **Version:** 0.88.3 * **POM Project URL:** [https://github.com/googleapis/java-datastore/proto-google-cloud-datastore-v1](https://github.com/googleapis/java-datastore/proto-google-cloud-datastore-v1) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1853,15 +1875,15 @@ This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-Lice * **POM Project URL:** [https://github.com/google/auto/tree/master/value](https://github.com/google/auto/tree/master/value) * **POM License: Apache 2.0** - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-core **Version:** 1.93.10 +1. **Group:** com.google.cloud **Name:** google-cloud-core **Version:** 1.94.0 * **POM Project URL:** [https://github.com/googleapis/java-core](https://github.com/googleapis/java-core) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-core-http **Version:** 1.93.10 +1. **Group:** com.google.cloud **Name:** google-cloud-core-http **Version:** 1.94.0 * **POM Project URL:** [https://github.com/googleapis/java-core](https://github.com/googleapis/java-core) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group:** com.google.cloud **Name:** google-cloud-datastore **Version:** 1.105.2 +1. **Group:** com.google.cloud **Name:** google-cloud-datastore **Version:** 1.105.3 * **POM Project URL:** [https://github.com/googleapis/java-datastore](https://github.com/googleapis/java-datastore) * **POM License: Apache-2.0** - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1927,6 +1949,10 @@ This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-Lice * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) * **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.http-client **Name:** google-http-client-apache-v2 **Version:** 1.38.0 + * **Manifest Project URL:** [http://www.google.com/](http://www.google.com/) + * **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.http-client **Name:** google-http-client-appengine **Version:** 1.38.0 * **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) @@ -1990,11 +2016,11 @@ This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-Lice * **Project URL:** [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) * **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.33.1 +1. **Group:** io.grpc **Name:** grpc-api **Version:** 1.34.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.33.1 +1. **Group:** io.grpc **Name:** grpc-context **Version:** 1.34.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) @@ -2165,4 +2191,4 @@ This report was generated on **Fri Dec 04 14:39:37 EET 2020** using [Gradle-Lice The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Fri Dec 04 14:39:42 EET 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file +This report was generated on **Tue Dec 15 12:20:48 EET 2020** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file diff --git a/pom.xml b/pom.xml index 8d83fa3bb..b0e0bb0a1 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ all modules and does not describe the project structure per-subproject. io.spine.gcloud spine-gcloud-java -1.6.16 +1.7.0 2015 @@ -28,25 +28,25 @@ all modules and does not describe the project structure per-subproject. com.google.api.grpc proto-google-cloud-pubsub-v1 - 1.92.0 + 1.92.1 compile com.google.cloud google-cloud-datastore - 1.105.2 + 1.105.3 compile com.google.cloud google-cloud-trace - 1.2.7 + 1.2.8 compile io.spine spine-server - 1.6.18 + 1.7.0 compile @@ -70,7 +70,7 @@ all modules and does not describe the project structure per-subproject. io.spine spine-testutil-server - 1.6.18 + 1.7.0 test @@ -120,7 +120,7 @@ all modules and does not describe the project structure per-subproject. io.spine.tools spine-protoc-plugin - 1.6.16 + 1.7.0 net.sourceforge.pmd