-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* redirect current to versioned docs (#227) * redirect current to versioned docs * Update build.sbt * copy PekkoCoreDependency from main branch and anything needed to build it * docker-compose command no longer supported by GitHub CI * Update docker-compose.yml
- Loading branch information
Showing
11 changed files
with
95 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
import com.github.pjfanning.pekkobuild.PekkoDependency | ||
|
||
object PekkoCoreDependency extends PekkoDependency { | ||
override val checkProject: String = "pekko-cluster-sharding-typed" | ||
override val module: Option[String] = None | ||
override val currentVersion: String = "1.0.3" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,47 @@ | ||
postgres: | ||
image: postgres:latest | ||
container_name: postgres-test | ||
environment: | ||
- "TZ=Europe/Amsterdam" | ||
- "POSTGRES_USER=docker" | ||
- "POSTGRES_PASSWORD=docker" | ||
ports: | ||
- "5432:5432" # credentials (docker:docker) | ||
# For detailed information about docker-compose visit https://docs.docker.com/compose/ | ||
# To start all docker containers required to execute the tests locally run: | ||
# docker compose up | ||
|
||
mysql: | ||
image: mysql:latest | ||
container_name: mysql-test | ||
environment: | ||
- "TZ=Europe/Amsterdam" | ||
- "MYSQL_ROOT_PASSWORD=root" | ||
ports: | ||
- "3306:3306" # credentials (root:root) | ||
version: '2.2' | ||
services: | ||
postgres: | ||
image: postgres:latest | ||
container_name: postgres-test | ||
environment: | ||
- "TZ=Europe/Amsterdam" | ||
- "POSTGRES_USER=docker" | ||
- "POSTGRES_PASSWORD=docker" | ||
ports: | ||
- "5432:5432" # credentials (docker:docker) | ||
|
||
oracle: | ||
image: oracleinanutshell/oracle-xe-11g | ||
container_name: oracle-test | ||
environment: | ||
- "TZ=Europe/Amsterdam" | ||
- "DBCA_TOTAL_MEMORY=1024" | ||
ports: | ||
- "1521:1521" # DB_CONN: credentials (system:oracle) | ||
mysql: | ||
image: mysql:latest | ||
container_name: mysql-test | ||
environment: | ||
- "TZ=Europe/Amsterdam" | ||
- "MYSQL_ROOT_PASSWORD=root" | ||
ports: | ||
- "3306:3306" # credentials (root:root) | ||
|
||
sqlserver: | ||
image: topaztechnology/mssql-server-linux | ||
container_name: sqlserver-test | ||
environment: | ||
- "TZ=Europe/Amsterdam" | ||
- "DBCA_TOTAL_MEMORY=1024" | ||
- "ACCEPT_EULA=Y" | ||
- "SQL_USER=docker" | ||
- "SQL_PASSWORD=docker" | ||
- "SQL_DB=docker" | ||
ports: | ||
- "1433:1433" # credentials (docker:docker) | ||
oracle: | ||
image: gvenzl/oracle-xe:21.3.0-slim-faststart | ||
container_name: oracle-test | ||
environment: | ||
- "TZ=Europe/Amsterdam" | ||
- "DBCA_TOTAL_MEMORY=1024" | ||
- "ORACLE_PASSWORD=oracle" | ||
ports: | ||
- "1521:1521" # DB_CONN: credentials (system:oracle | pass: oracle) | ||
|
||
sqlserver: | ||
image: topaztechnology/mssql-server-linux | ||
container_name: sqlserver-test | ||
environment: | ||
- "TZ=Europe/Amsterdam" | ||
- "DBCA_TOTAL_MEMORY=1024" | ||
- "ACCEPT_EULA=Y" | ||
- "SQL_USER=docker" | ||
- "SQL_PASSWORD=docker" | ||
- "SQL_DB=docker" | ||
ports: | ||
- "1433:1433" # credentials (docker:docker) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters