Skip to content

Commit 82a1563

Browse files
committed
Update couchbase scala-client 1.4.10 to 1.4.10-patch2
1 parent 8f2f426 commit 82a1563

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/sbt-devops.yml

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
- run: ./run-cb-test-container.sh
2424
env:
2525
CB_VERSION: ${{ matrix.couchbase }}
26+
NEXUS_USER: ${{ secrets.NEXUS_USER }}
27+
NEXUS_PASS: ${{ secrets.NEXUS_PASS }}
2628
- run: sbt test
2729
# https://www.scala-sbt.org/1.x/docs/GitHub-Actions-with-sbt.html#Caching
2830
- run: |
@@ -58,6 +60,8 @@ jobs:
5860
PGP_SECRET: ${{ secrets.PGP_SECRET }}
5961
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
6062
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
63+
NEXUS_USER: ${{ secrets.NEXUS_USER }}
64+
NEXUS_PASS: ${{ secrets.NEXUS_PASS }}
6165
# optional
6266
#CI_CLEAN: '; clean ; sonatypeBundleClean'
6367
#CI_RELEASE: '+publishSigned'

build.sbt

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ val emptyDoc = Compile / packageDoc / mappings := Seq(
22
(ThisBuild / baseDirectory).value / "README.md" -> "README.md"
33
)
44

5+
val nexus = "https://repo.bennuoc.com/repository/maven"
6+
resolvers += "Nexus" at s"$nexus-public"
7+
58
def resourcePrepare(extra: Def.Initialize[Task[String]]) =
69
resourceGenerators += Def.task {
710
val f = managedResourceDirectories.value.head / "application.conf"
@@ -37,12 +40,13 @@ lazy val `couchbase-scala` = projectMatrix
3740
.configAxis(config14, Seq(scala212, scala213))
3841
.settings(
3942
libraryDependencies ++= Seq(
40-
"com.couchbase.client" %% "scala-client" % "1.4.10",
43+
"com.couchbase.client" %% "scala-client" % "1.4.10-patch2",
4144
"javax.inject" % "javax.inject" % "1",
4245
"com.typesafe.play" %% "play-json" % "2.10.0-RC5",
4346
"com.typesafe" % "config" % configAxis.value.version,
4447
"com.google.inject" % "guice" % "5.0.1" % Test,
4548
) ++ specs2("-core").value,
49+
resolvers += "Nexus" at s"$nexus-public",
4650
emptyDoc,
4751
inConfig(Test)(resourcePrepare(Def.task {
4852
val cp = (`compat-test` / Runtime / fullClasspath).value

0 commit comments

Comments
 (0)