Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change license #677

Merged
merged 3 commits into from
Sep 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This is the process for committing code into master.

1. Make sure you have signed the Lightbend CLA, if not, [sign it online](https://www.lightbend.com/contribute/cla).
1. Make sure you have signed the Lightbend CLA, if not, [sign it online](https://www.lightbend.com/contribute/cla/akka/current).
2. Before starting to work on a feature or a fix, make sure that there is a ticket for your work in the [issue tracker](https://github.com/akka/akka-persistence-jdbc/issues). If not, create it first.
3. Perform your work according to the [pull request requirements](#pull-request-requirements).
4. When the feature or fix is completed you should open a [Pull Request](https://help.github.com/articles/using-pull-requests) on [GitHub](https://github.com/akka/akka-persistence-jdbc/pulls).
Expand Down
297 changes: 96 additions & 201 deletions LICENSE

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
## Use JDBC-compatible databases with Akka Persistence

[![Build Status](https://travis-ci.com/akka/akka-persistence-jdbc.svg?branch=master)](https://travis-ci.com/github/akka/akka-persistence-jdbc)
[![License](https://img.shields.io/:license-Apache%202-red.svg)](https://www.apache.org/licenses/LICENSE-2.0.txt)

akka-persistence-jdbc writes journal and snapshot entries to a configured JDBC store. It implements the full akka-persistence-query API and is therefore very useful for implementing DDD-style
application models using Akka for creating reactive applications.
Expand Down Expand Up @@ -48,4 +47,6 @@ Refer to the [CONTRIBUTING.md](CONTRIBUTING.md) file for more details about the

You can also ask for clarifications or guidance in GitHub issues directly, or in the [akka/dev](https://gitter.im/akka/dev) chat if a more real time communication would be of benefit.

Akka Persistence JDBC is licensed under the Business Source License 1.1, see LICENSE.

[Lightbend](https://www.lightbend.com/) is backing Akka, Akka Persistence and other Reactive technologies.
202 changes: 0 additions & 202 deletions core/src/main/resources/LICENSE.txt

This file was deleted.

13 changes: 1 addition & 12 deletions core/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
@@ -1,16 +1,5 @@
# Copyright 2016 Dennis Vriend
#
# 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
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>

akka-persistence-jdbc {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/akka/persistence/jdbc/JournalRow.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.config
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.db
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.db
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc.journal.dao.legacy
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2014 - 2019 Dennis Vriend <https://github.com/dnvriend>
* Copyright (C) 2019 - 2021 Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
*/

package akka.persistence.jdbc
Expand Down
Loading