This is an automated email from the ASF dual-hosted git repository. hepin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-pekko-persistence-r2dbc.git
commit 06b686286e5a9e1e504c2eb7890e3b344f25e44c Author: Matthew de Detrich <[email protected]> AuthorDate: Tue Apr 11 20:37:52 2023 +0200 Add Apache license headers to source files --- core/src/main/resources/reference.conf | 1 + .../pekko/persistence/r2dbc/ConnectionFactoryProvider.scala | 9 +++++++++ .../org/apache/pekko/persistence/r2dbc/R2dbcSettings.scala | 9 +++++++++ .../apache/pekko/persistence/r2dbc/internal/BySliceQuery.scala | 9 +++++++++ .../pekko/persistence/r2dbc/internal/ContinuousQuery.scala | 9 +++++++++ .../org/apache/pekko/persistence/r2dbc/internal/PubSub.scala | 9 +++++++++ .../pekko/persistence/r2dbc/internal/R2dbcExecutor.scala | 9 +++++++++ .../org/apache/pekko/persistence/r2dbc/internal/Sql.scala | 9 +++++++++ .../apache/pekko/persistence/r2dbc/journal/JournalDao.scala | 9 +++++++++ .../apache/pekko/persistence/r2dbc/journal/R2dbcJournal.scala | 9 +++++++++ .../persistence/r2dbc/query/R2dbcReadJournalProvider.scala | 9 +++++++++ .../persistence/r2dbc/query/javadsl/R2dbcReadJournal.scala | 9 +++++++++ .../pekko/persistence/r2dbc/query/scaladsl/QueryDao.scala | 9 +++++++++ .../persistence/r2dbc/query/scaladsl/R2dbcReadJournal.scala | 9 +++++++++ .../pekko/persistence/r2dbc/snapshot/R2dbcSnapshotStore.scala | 9 +++++++++ .../apache/pekko/persistence/r2dbc/snapshot/SnapshotDao.scala | 9 +++++++++ .../r2dbc/state/R2dbcDurableStateStoreProvider.scala | 9 +++++++++ .../r2dbc/state/javadsl/R2dbcDurableStateStore.scala | 9 +++++++++ .../persistence/r2dbc/state/scaladsl/DurableStateDao.scala | 9 +++++++++ .../r2dbc/state/scaladsl/R2dbcDurableStateStore.scala | 9 +++++++++ .../org/apache/pekko/persistence/r2dbc/CborSerializable.scala | 9 +++++++++ .../org/apache/pekko/persistence/r2dbc/R2dbcSettingsSpec.scala | 9 +++++++++ .../scala/org/apache/pekko/persistence/r2dbc/TestActors.scala | 9 +++++++++ .../scala/org/apache/pekko/persistence/r2dbc/TestConfig.scala | 9 +++++++++ .../scala/org/apache/pekko/persistence/r2dbc/TestData.scala | 9 +++++++++ .../org/apache/pekko/persistence/r2dbc/TestDbLifecycle.scala | 9 +++++++++ .../persistence/r2dbc/internal/BySliceQueryBucketsSpec.scala | 9 +++++++++ .../pekko/persistence/r2dbc/internal/ContinuousQuerySpec.scala | 9 +++++++++ .../org/apache/pekko/persistence/r2dbc/internal/SqlSpec.scala | 9 +++++++++ .../pekko/persistence/r2dbc/journal/PersistTagsSpec.scala | 9 +++++++++ .../pekko/persistence/r2dbc/journal/PersistTimestampSpec.scala | 9 +++++++++ .../r2dbc/journal/R2dbcJournalPerfManyActorsSpec.scala | 9 +++++++++ .../pekko/persistence/r2dbc/journal/R2dbcJournalPerfSpec.scala | 9 +++++++++ .../pekko/persistence/r2dbc/journal/R2dbcJournalSpec.scala | 9 +++++++++ .../pekko/persistence/r2dbc/journal/TestDataGenerator.scala | 9 +++++++++ .../r2dbc/query/CurrentPersistenceIdsQuerySpec.scala | 9 +++++++++ .../persistence/r2dbc/query/EventsByPersistenceIdSpec.scala | 9 +++++++++ .../r2dbc/query/EventsBySliceBacktrackingSpec.scala | 9 +++++++++ .../pekko/persistence/r2dbc/query/EventsBySlicePerfSpec.scala | 9 +++++++++ .../persistence/r2dbc/query/EventsBySlicePubSubSpec.scala | 9 +++++++++ .../pekko/persistence/r2dbc/query/EventsBySliceSpec.scala | 9 +++++++++ .../persistence/r2dbc/snapshot/R2dbcSnapshotStoreSpec.scala | 9 +++++++++ .../r2dbc/state/CurrentPersistenceIdsQuerySpec.scala | 9 +++++++++ .../persistence/r2dbc/state/DurableStateBySliceSpec.scala | 9 +++++++++ .../pekko/persistence/r2dbc/state/DurableStateStoreSpec.scala | 9 +++++++++ .../pekko/persistence/r2dbc/state/TestDataGenerator.scala | 9 +++++++++ .../java/jdocs/home/projection/R2dbcProjectionDocExample.java | 9 +++++++++ docs/src/test/java/jdocs/home/query/QueryDocCompileOnly.java | 9 +++++++++ docs/src/test/resources/application-postgres.conf | 1 + docs/src/test/resources/application-yugabyte.conf | 1 + docs/src/test/scala/docs/home/CborSerializable.scala | 9 +++++++++ .../scala/docs/home/projection/R2dbcProjectionDocExample.scala | 9 +++++++++ docs/src/test/scala/docs/home/query/QueryDocCompileOnly.scala | 9 +++++++++ migration/src/main/resources/reference.conf | 2 ++ .../pekko/persistence/r2dbc/migration/MigrationTool.scala | 9 +++++++++ .../pekko/persistence/r2dbc/migration/MigrationToolDao.scala | 9 +++++++++ migration/src/test/resources/application.conf | 2 ++ .../pekko/persistence/r2dbc/migration/MigrationToolSpec.scala | 9 +++++++++ project/AutomaticModuleName.scala | 10 ++++++++++ project/Dependencies.scala | 9 +++++++++ projection/src/main/resources/reference.conf | 2 ++ .../pekko/projection/r2dbc/R2dbcProjectionSettings.scala | 9 +++++++++ .../r2dbc/internal/BySliceSourceProviderAdapter.scala | 9 +++++++++ .../pekko/projection/r2dbc/internal/R2dbcHandlerAdapter.scala | 9 +++++++++ .../pekko/projection/r2dbc/internal/R2dbcOffsetStore.scala | 9 +++++++++ .../pekko/projection/r2dbc/internal/R2dbcProjectionImpl.scala | 9 +++++++++ .../apache/pekko/projection/r2dbc/javadsl/R2dbcHandler.scala | 9 +++++++++ .../pekko/projection/r2dbc/javadsl/R2dbcProjection.scala | 9 +++++++++ .../apache/pekko/projection/r2dbc/javadsl/R2dbcSession.scala | 9 +++++++++ .../apache/pekko/projection/r2dbc/scaladsl/R2dbcHandler.scala | 9 +++++++++ .../pekko/projection/r2dbc/scaladsl/R2dbcProjection.scala | 9 +++++++++ .../apache/pekko/projection/r2dbc/scaladsl/R2dbcSession.scala | 9 +++++++++ .../scala/org/apache/pekko/projection/TestStatusObserver.scala | 9 +++++++++ .../pekko/projection/r2dbc/DurableStateEndToEndSpec.scala | 9 +++++++++ .../apache/pekko/projection/r2dbc/EventSourcedChaosSpec.scala | 9 +++++++++ .../pekko/projection/r2dbc/EventSourcedEndToEndSpec.scala | 9 +++++++++ .../apache/pekko/projection/r2dbc/EventSourcedPubSubSpec.scala | 9 +++++++++ .../apache/pekko/projection/r2dbc/R2dbcOffsetStoreSpec.scala | 9 +++++++++ .../pekko/projection/r2dbc/R2dbcOffsetStoreStateSpec.scala | 9 +++++++++ .../apache/pekko/projection/r2dbc/R2dbcProjectionSpec.scala | 9 +++++++++ .../projection/r2dbc/R2dbcTimestampOffsetProjectionSpec.scala | 9 +++++++++ .../pekko/projection/r2dbc/R2dbcTimestampOffsetStoreSpec.scala | 9 +++++++++ .../scala/org/apache/pekko/projection/r2dbc/TestClock.scala | 9 +++++++++ .../scala/org/apache/pekko/projection/r2dbc/TestConfig.scala | 9 +++++++++ .../scala/org/apache/pekko/projection/r2dbc/TestData.scala | 9 +++++++++ .../org/apache/pekko/projection/r2dbc/TestDbLifecycle.scala | 9 +++++++++ .../pekko/projection/r2dbc/TestSourceProviderWithInput.scala | 9 +++++++++ 87 files changed, 739 insertions(+) diff --git a/core/src/main/resources/reference.conf b/core/src/main/resources/reference.conf index a7666c3..f5f8622 100644 --- a/core/src/main/resources/reference.conf +++ b/core/src/main/resources/reference.conf @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 // #journal-settings pekko.persistence.r2dbc { diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/ConnectionFactoryProvider.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/ConnectionFactoryProvider.scala index ed4c26e..1a0a720 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/ConnectionFactoryProvider.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/ConnectionFactoryProvider.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/R2dbcSettings.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/R2dbcSettings.scala index 99eff1d..c058e98 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/R2dbcSettings.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/R2dbcSettings.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/BySliceQuery.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/BySliceQuery.scala index 51d3982..2cc7718 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/BySliceQuery.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/BySliceQuery.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/ContinuousQuery.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/ContinuousQuery.scala index 199541f..e4a7ea3 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/ContinuousQuery.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/ContinuousQuery.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/PubSub.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/PubSub.scala index 9a015dd..a3c9a0a 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/PubSub.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/PubSub.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/R2dbcExecutor.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/R2dbcExecutor.scala index 73f6ede..3a1a02b 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/R2dbcExecutor.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/R2dbcExecutor.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/Sql.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/Sql.scala index c70c36e..d354d9a 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/Sql.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/internal/Sql.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/journal/JournalDao.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/journal/JournalDao.scala index fa27bac..9f6b755 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/journal/JournalDao.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/journal/JournalDao.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournal.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournal.scala index f7129c6..265b378 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournal.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournal.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/R2dbcReadJournalProvider.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/R2dbcReadJournalProvider.scala index 8b47a0d..9762867 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/R2dbcReadJournalProvider.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/R2dbcReadJournalProvider.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/javadsl/R2dbcReadJournal.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/javadsl/R2dbcReadJournal.scala index e76db72..ee96d5e 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/javadsl/R2dbcReadJournal.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/javadsl/R2dbcReadJournal.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/scaladsl/QueryDao.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/scaladsl/QueryDao.scala index f5ac5c0..7d5634e 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/scaladsl/QueryDao.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/scaladsl/QueryDao.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/scaladsl/R2dbcReadJournal.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/scaladsl/R2dbcReadJournal.scala index 88a5427..51444d1 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/scaladsl/R2dbcReadJournal.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/query/scaladsl/R2dbcReadJournal.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/snapshot/R2dbcSnapshotStore.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/snapshot/R2dbcSnapshotStore.scala index fcabc8d..a89f189 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/snapshot/R2dbcSnapshotStore.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/snapshot/R2dbcSnapshotStore.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/snapshot/SnapshotDao.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/snapshot/SnapshotDao.scala index e44f7a3..eb964b1 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/snapshot/SnapshotDao.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/snapshot/SnapshotDao.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/R2dbcDurableStateStoreProvider.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/R2dbcDurableStateStoreProvider.scala index b7b4000..14ece3a 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/R2dbcDurableStateStoreProvider.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/R2dbcDurableStateStoreProvider.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/javadsl/R2dbcDurableStateStore.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/javadsl/R2dbcDurableStateStore.scala index 07adad6..04e8c5d 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/javadsl/R2dbcDurableStateStore.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/javadsl/R2dbcDurableStateStore.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/scaladsl/DurableStateDao.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/scaladsl/DurableStateDao.scala index a216ab3..48c53ce 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/scaladsl/DurableStateDao.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/scaladsl/DurableStateDao.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/scaladsl/R2dbcDurableStateStore.scala b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/scaladsl/R2dbcDurableStateStore.scala index e8233ec..0db0f60 100644 --- a/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/scaladsl/R2dbcDurableStateStore.scala +++ b/core/src/main/scala/org/apache/pekko/persistence/r2dbc/state/scaladsl/R2dbcDurableStateStore.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/CborSerializable.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/CborSerializable.scala index c44b74c..826e127 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/CborSerializable.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/CborSerializable.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/R2dbcSettingsSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/R2dbcSettingsSpec.scala index 2fb6cd0..ddacafb 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/R2dbcSettingsSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/R2dbcSettingsSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestActors.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestActors.scala index 7dd0c96..ed16ad7 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestActors.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestActors.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestConfig.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestConfig.scala index 81ba839..a7a6db6 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestConfig.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestConfig.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestData.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestData.scala index dfe5bb9..2b3257a 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestData.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestData.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestDbLifecycle.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestDbLifecycle.scala index 10f0657..1b8b4bf 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestDbLifecycle.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/TestDbLifecycle.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/BySliceQueryBucketsSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/BySliceQueryBucketsSpec.scala index 0971128..8d5d2e2 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/BySliceQueryBucketsSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/BySliceQueryBucketsSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/ContinuousQuerySpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/ContinuousQuerySpec.scala index f9a640c..7f5c45c 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/ContinuousQuerySpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/ContinuousQuerySpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/SqlSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/SqlSpec.scala index 0834f98..4a1e1d3 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/SqlSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/internal/SqlSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/PersistTagsSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/PersistTagsSpec.scala index 90db254..da52d68 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/PersistTagsSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/PersistTagsSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/PersistTimestampSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/PersistTimestampSpec.scala index d940011..e2a93f2 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/PersistTimestampSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/PersistTimestampSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalPerfManyActorsSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalPerfManyActorsSpec.scala index 5f69fb1..d784f62 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalPerfManyActorsSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalPerfManyActorsSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalPerfSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalPerfSpec.scala index f021a7a..030e544 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalPerfSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalPerfSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalSpec.scala index c193fec..c4120f2 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/R2dbcJournalSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/TestDataGenerator.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/TestDataGenerator.scala index 7dfcf71..8ac464f 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/TestDataGenerator.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/journal/TestDataGenerator.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/CurrentPersistenceIdsQuerySpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/CurrentPersistenceIdsQuerySpec.scala index 3902c18..82648a8 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/CurrentPersistenceIdsQuerySpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/CurrentPersistenceIdsQuerySpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsByPersistenceIdSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsByPersistenceIdSpec.scala index 0d79aba..0d95463 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsByPersistenceIdSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsByPersistenceIdSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySliceBacktrackingSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySliceBacktrackingSpec.scala index f237dc0..59b2501 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySliceBacktrackingSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySliceBacktrackingSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySlicePerfSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySlicePerfSpec.scala index 9700fde..1cddeab 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySlicePerfSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySlicePerfSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySlicePubSubSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySlicePubSubSpec.scala index c75f016..3e7d99c 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySlicePubSubSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySlicePubSubSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySliceSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySliceSpec.scala index 37bca7d..de15b4a 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySliceSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/query/EventsBySliceSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/snapshot/R2dbcSnapshotStoreSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/snapshot/R2dbcSnapshotStoreSpec.scala index 7aedd03..dc34d2c 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/snapshot/R2dbcSnapshotStoreSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/snapshot/R2dbcSnapshotStoreSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/CurrentPersistenceIdsQuerySpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/CurrentPersistenceIdsQuerySpec.scala index b64a884..5ffbba8 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/CurrentPersistenceIdsQuerySpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/CurrentPersistenceIdsQuerySpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/DurableStateBySliceSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/DurableStateBySliceSpec.scala index c03263e..c298036 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/DurableStateBySliceSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/DurableStateBySliceSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/DurableStateStoreSpec.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/DurableStateStoreSpec.scala index 6c950c9..dec30ed 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/DurableStateStoreSpec.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/DurableStateStoreSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/TestDataGenerator.scala b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/TestDataGenerator.scala index af7ae22..e08f8c3 100644 --- a/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/TestDataGenerator.scala +++ b/core/src/test/scala/org/apache/pekko/persistence/r2dbc/state/TestDataGenerator.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/docs/src/test/java/jdocs/home/projection/R2dbcProjectionDocExample.java b/docs/src/test/java/jdocs/home/projection/R2dbcProjectionDocExample.java index 451ddff..c8454ee 100644 --- a/docs/src/test/java/jdocs/home/projection/R2dbcProjectionDocExample.java +++ b/docs/src/test/java/jdocs/home/projection/R2dbcProjectionDocExample.java @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/docs/src/test/java/jdocs/home/query/QueryDocCompileOnly.java b/docs/src/test/java/jdocs/home/query/QueryDocCompileOnly.java index fa236c5..f1cdbb2 100644 --- a/docs/src/test/java/jdocs/home/query/QueryDocCompileOnly.java +++ b/docs/src/test/java/jdocs/home/query/QueryDocCompileOnly.java @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + package jdocs.home.query; import org.apache.pekko.NotUsed; diff --git a/docs/src/test/resources/application-postgres.conf b/docs/src/test/resources/application-postgres.conf index d658f3d..4d39e41 100644 --- a/docs/src/test/resources/application-postgres.conf +++ b/docs/src/test/resources/application-postgres.conf @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 pekko.persistence.journal.plugin = "pekko.persistence.r2dbc.journal" pekko.persistence.snapshot-store.plugin = "pekko.persistence.r2dbc.snapshot" diff --git a/docs/src/test/resources/application-yugabyte.conf b/docs/src/test/resources/application-yugabyte.conf index 4895615..de9a646 100644 --- a/docs/src/test/resources/application-yugabyte.conf +++ b/docs/src/test/resources/application-yugabyte.conf @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 pekko.persistence.journal.plugin = "pekko.persistence.r2dbc.journal" pekko.persistence.snapshot-store.plugin = "pekko.persistence.r2dbc.snapshot" diff --git a/docs/src/test/scala/docs/home/CborSerializable.scala b/docs/src/test/scala/docs/home/CborSerializable.scala index 878f92c..abe2e04 100644 --- a/docs/src/test/scala/docs/home/CborSerializable.scala +++ b/docs/src/test/scala/docs/home/CborSerializable.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/docs/src/test/scala/docs/home/projection/R2dbcProjectionDocExample.scala b/docs/src/test/scala/docs/home/projection/R2dbcProjectionDocExample.scala index 72a40d6..14ecf48 100644 --- a/docs/src/test/scala/docs/home/projection/R2dbcProjectionDocExample.scala +++ b/docs/src/test/scala/docs/home/projection/R2dbcProjectionDocExample.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/docs/src/test/scala/docs/home/query/QueryDocCompileOnly.scala b/docs/src/test/scala/docs/home/query/QueryDocCompileOnly.scala index e933bc8..53fcabe 100644 --- a/docs/src/test/scala/docs/home/query/QueryDocCompileOnly.scala +++ b/docs/src/test/scala/docs/home/query/QueryDocCompileOnly.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + package docs.home.query import org.apache.pekko diff --git a/migration/src/main/resources/reference.conf b/migration/src/main/resources/reference.conf index 113213e..be1817a 100644 --- a/migration/src/main/resources/reference.conf +++ b/migration/src/main/resources/reference.conf @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: Apache-2.0 + pekko.persistence.r2dbc.migration { # Pekko Persistence plugin to migrate from. diff --git a/migration/src/main/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationTool.scala b/migration/src/main/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationTool.scala index de6e1ba..2e17432 100644 --- a/migration/src/main/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationTool.scala +++ b/migration/src/main/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationTool.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/migration/src/main/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationToolDao.scala b/migration/src/main/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationToolDao.scala index 8f34f11..4e06ba5 100644 --- a/migration/src/main/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationToolDao.scala +++ b/migration/src/main/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationToolDao.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/migration/src/test/resources/application.conf b/migration/src/test/resources/application.conf index ffc2f16..1b7aeba 100644 --- a/migration/src/test/resources/application.conf +++ b/migration/src/test/resources/application.conf @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: Apache-2.0 + pekko.persistence.r2dbc.migration { source { query-plugin-id = "jdbc-read-journal" diff --git a/migration/src/test/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationToolSpec.scala b/migration/src/test/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationToolSpec.scala index 1a67245..9639544 100644 --- a/migration/src/test/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationToolSpec.scala +++ b/migration/src/test/scala/org/apache/pekko/persistence/r2dbc/migration/MigrationToolSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/project/AutomaticModuleName.scala b/project/AutomaticModuleName.scala index 67ebd3d..4fc0b9f 100644 --- a/project/AutomaticModuleName.scala +++ b/project/AutomaticModuleName.scala @@ -1,6 +1,16 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /** * Copyright (C) 2009-2018 Lightbend Inc. <http://www.lightbend.com> */ + import sbt.{ Def, _ } import sbt.Keys._ diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 0c65284..504fc99 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/resources/reference.conf b/projection/src/main/resources/reference.conf index 2894480..305935a 100644 --- a/projection/src/main/resources/reference.conf +++ b/projection/src/main/resources/reference.conf @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: Apache-2.0 + # This defines the default configuration for pekko-projection-r2dbc. # Make your edits/overrides in your application.conf. diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/R2dbcProjectionSettings.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/R2dbcProjectionSettings.scala index 3421dd7..ef0b1b5 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/R2dbcProjectionSettings.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/R2dbcProjectionSettings.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/BySliceSourceProviderAdapter.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/BySliceSourceProviderAdapter.scala index 9414847..e295694 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/BySliceSourceProviderAdapter.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/BySliceSourceProviderAdapter.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcHandlerAdapter.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcHandlerAdapter.scala index ce0d7ef..0dc18b1 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcHandlerAdapter.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcHandlerAdapter.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcOffsetStore.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcOffsetStore.scala index af6df02..b650bf5 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcOffsetStore.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcOffsetStore.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcProjectionImpl.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcProjectionImpl.scala index 3bf4699..55fe891 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcProjectionImpl.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/internal/R2dbcProjectionImpl.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcHandler.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcHandler.scala index 349b086..1e0ffe4 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcHandler.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcHandler.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcProjection.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcProjection.scala index 5e7d6de..89ece70 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcProjection.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcProjection.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcSession.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcSession.scala index f71ad1a..49e19e0 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcSession.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/javadsl/R2dbcSession.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcHandler.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcHandler.scala index 7643de9..38c7fde 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcHandler.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcHandler.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcProjection.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcProjection.scala index 11fe556..1515fdc 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcProjection.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcProjection.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcSession.scala b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcSession.scala index 8a3bfec..e057bbe 100644 --- a/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcSession.scala +++ b/projection/src/main/scala/org/apache/pekko/projection/r2dbc/scaladsl/R2dbcSession.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/TestStatusObserver.scala b/projection/src/test/scala/org/apache/pekko/projection/TestStatusObserver.scala index 254dece..4740143 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/TestStatusObserver.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/TestStatusObserver.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/DurableStateEndToEndSpec.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/DurableStateEndToEndSpec.scala index 125a162..0469df0 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/DurableStateEndToEndSpec.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/DurableStateEndToEndSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedChaosSpec.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedChaosSpec.scala index 979fd3c..a5c4f67 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedChaosSpec.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedChaosSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedEndToEndSpec.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedEndToEndSpec.scala index 7b04eac..69ae237 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedEndToEndSpec.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedEndToEndSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedPubSubSpec.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedPubSubSpec.scala index e661e0f..29ff0d9 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedPubSubSpec.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/EventSourcedPubSubSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcOffsetStoreSpec.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcOffsetStoreSpec.scala index a034b90..abaee6b 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcOffsetStoreSpec.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcOffsetStoreSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcOffsetStoreStateSpec.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcOffsetStoreStateSpec.scala index 329bc4b..903e06d 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcOffsetStoreStateSpec.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcOffsetStoreStateSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcProjectionSpec.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcProjectionSpec.scala index 7b1ea98..7d59b24 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcProjectionSpec.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcProjectionSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcTimestampOffsetProjectionSpec.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcTimestampOffsetProjectionSpec.scala index d4085c2..711234d 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcTimestampOffsetProjectionSpec.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcTimestampOffsetProjectionSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcTimestampOffsetStoreSpec.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcTimestampOffsetStoreSpec.scala index eb788ea..d3f24db 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcTimestampOffsetStoreSpec.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/R2dbcTimestampOffsetStoreSpec.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestClock.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestClock.scala index ab45994..0256cc4 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestClock.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestClock.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestConfig.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestConfig.scala index 34203d8..b26896b 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestConfig.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestConfig.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestData.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestData.scala index 4c03c10..d309435 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestData.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestData.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestDbLifecycle.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestDbLifecycle.scala index 575cf63..1337f4a 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestDbLifecycle.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestDbLifecycle.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ diff --git a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestSourceProviderWithInput.scala b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestSourceProviderWithInput.scala index 316bc56..e01fd64 100644 --- a/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestSourceProviderWithInput.scala +++ b/projection/src/test/scala/org/apache/pekko/projection/r2dbc/TestSourceProviderWithInput.scala @@ -1,3 +1,12 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * license agreements; and to You under the Apache License, version 2.0: + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * This file is part of the Apache Pekko project, derived from Akka. + */ + /* * Copyright (C) 2021 Lightbend Inc. <https://www.lightbend.com> */ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
