This is an automated email from the ASF dual-hosted git repository.
nvollmar pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-pekko-persistence-cassandra.git
The following commit(s) were added to refs/heads/main by this push:
new c30f82a Adds explicit driver version (#35)
c30f82a is described below
commit c30f82aecbf617b36bcc3ff0781acb06fb87041e
Author: Nicolas Vollmar <[email protected]>
AuthorDate: Thu May 11 12:41:57 2023 +0200
Adds explicit driver version (#35)
* Adds explicit driver version
* Updates builds
---
.github/workflows/headers.yml | 2 +-
.github/workflows/unit-tests.yml | 8 ++++----
project/Dependencies.scala | 5 ++++-
3 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/headers.yml b/.github/workflows/headers.yml
index 88b00d4..ec14f3f 100644
--- a/.github/workflows/headers.yml
+++ b/.github/workflows/headers.yml
@@ -20,7 +20,7 @@ jobs:
java-version: 11
- name: Cache Coursier cache
- uses: coursier/[email protected]
+ uses: coursier/[email protected]
- name: Check headers
run: sbt +headerCheckAll
diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml
index 46af7aa..609d150 100644
--- a/.github/workflows/unit-tests.yml
+++ b/.github/workflows/unit-tests.yml
@@ -14,7 +14,7 @@ jobs:
test:
name: Test
if: github.repository == 'apache/incubator-pekko-persistence-cassandra'
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
strategy:
fail-fast: false
@@ -48,7 +48,7 @@ jobs:
java-version: ${{ matrix.javaVersion }}
- name: Cache Coursier cache
- uses: coursier/[email protected]
+ uses: coursier/[email protected]
- name: Test against ${{ matrix.container }}
run: |-
@@ -57,7 +57,7 @@ jobs:
docs:
name: ScalaDoc, Documentation with Paradox
if: github.repository == 'apache/incubator-pekko-persistence-cassandra'
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
env:
JAVA_OPTS: -Xms2G -Xmx2G -Xss2M -XX:ReservedCodeCacheSize=256M
-Dfile.encoding=UTF-8
@@ -80,7 +80,7 @@ jobs:
java-version: 11
- name: Cache Coursier cache
- uses: coursier/[email protected]
+ uses: coursier/[email protected]
- name: Create all API docs for artifacts/website and all reference docs
run: sbt "unidoc; docs/paradox"
\ No newline at end of file
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 3a7f6ec..632c12c 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -20,8 +20,10 @@ object Dependencies {
val pekkoVersion = System.getProperty("override.pekko.version",
"0.0.0+26656-898c6970-SNAPSHOT")
val pekkoVersionInDocs = "current"
val cassandraVersionInDocs = "4.0"
+
// Should be sync with the version of the driver in Pekko Connectors
Cassandra
- val driverVersionInDocs = "4.6"
+ val driverVersion = "4.15.0"
+ val driverVersionInDocs = "4.14"
val pekkoConnectorsVersion = "0.0.0+85-a82f3c3c-SNAPSHOT"
val pekkoConnectorsVersionInDocs = "current"
@@ -51,6 +53,7 @@ object Dependencies {
"org.apache.pekko" %% "pekko-persistence-query" % pekkoVersion,
"org.apache.pekko" %% "pekko-stream" % pekkoVersion,
"org.apache.pekko" %% "pekko-cluster-tools" % pekkoVersion,
+ "com.datastax.oss" % "java-driver-core" % driverVersion,
"org.scala-lang.modules" %% "scala-collection-compat" % "2.7.0",
logback % Test,
"org.scalatest" %% "scalatest" % "3.2.14" % Test,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]