Skip to content

Commit

Permalink
move configuration to it module
Browse files Browse the repository at this point in the history
  • Loading branch information
Roiocam committed May 15, 2024
1 parent fea123c commit 2e43af8
Show file tree
Hide file tree
Showing 30 changed files with 61 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ lazy val migratorIntegration = project
.settings(name := "pekko-persistence-jdbc-migrator-integration", libraryDependencies ++= Dependencies.Libraries)
.settings(publish / skip := true, doc / sources := Seq.empty, Test / fork := true)
.disablePlugins(MimaPlugin, SitePlugin)
.dependsOn(migrator % "compile->compile;test->test")
.dependsOn(core % "compile->compile;test->test", migrator)

lazy val themeSettings = Seq(
pekkoParadoxGithub := Some("https://github.com/apache/pekko-persistence-jdbc"))
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* license agreements; and to You under the Apache License, version 2.0:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* license agreements; and to You under the Apache License, version 2.0:
Expand All @@ -9,7 +28,10 @@

package org.apache.pekko.persistence.jdbc.migrator

import com.typesafe.config.{ Config, ConfigFactory, ConfigValue, ConfigValueFactory }
import org.apache.pekko
import org.scalatest.BeforeAndAfterEach
import org.slf4j.{ Logger, LoggerFactory }
import pekko.actor.{ ActorRef, ActorSystem, Props, Stash }
import pekko.event.LoggingReceive
import pekko.pattern.ask
Expand All @@ -26,9 +48,6 @@ import pekko.persistence.{ PersistentActor, SaveSnapshotSuccess, SnapshotMetadat
import pekko.stream.Materializer
import pekko.stream.scaladsl.Sink
import pekko.util.Timeout
import com.typesafe.config.{ Config, ConfigFactory, ConfigValue, ConfigValueFactory }
import org.scalatest.BeforeAndAfterEach
import org.slf4j.{ Logger, LoggerFactory }
import slick.jdbc.JdbcBackend.{ Database, Session }

import java.sql.Statement
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* license agreements; and to You under the Apache License, version 2.0:
Expand Down

0 comments on commit 2e43af8

Please sign in to comment.