File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 23
23
- run : ./run-cb-test-container.sh
24
24
env :
25
25
CB_VERSION : ${{ matrix.couchbase }}
26
+ NEXUS_USER : ${{ secrets.NEXUS_USER }}
27
+ NEXUS_PASS : ${{ secrets.NEXUS_PASS }}
26
28
- run : sbt test
27
29
# https://www.scala-sbt.org/1.x/docs/GitHub-Actions-with-sbt.html#Caching
28
30
- run : |
58
60
PGP_SECRET : ${{ secrets.PGP_SECRET }}
59
61
SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
60
62
SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
63
+ NEXUS_USER : ${{ secrets.NEXUS_USER }}
64
+ NEXUS_PASS : ${{ secrets.NEXUS_PASS }}
61
65
# optional
62
66
# CI_CLEAN: '; clean ; sonatypeBundleClean'
63
67
# CI_RELEASE: '+publishSigned'
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ val emptyDoc = Compile / packageDoc / mappings := Seq(
2
2
(ThisBuild / baseDirectory).value / " README.md" -> " README.md"
3
3
)
4
4
5
+ val nexus = " https://repo.bennuoc.com/repository/maven"
6
+
5
7
def resourcePrepare (extra : Def .Initialize [Task [String ]]) =
6
8
resourceGenerators += Def .task {
7
9
val f = managedResourceDirectories.value.head / " application.conf"
@@ -36,8 +38,9 @@ lazy val `couchbase-scala` = projectMatrix
36
38
.configAxis(config13, Seq (scala212, scala213))
37
39
.configAxis(config14, Seq (scala212, scala213))
38
40
.settings(
41
+ resolvers += " Nexus" at s " $nexus-public " ,
39
42
libraryDependencies ++= Seq (
40
- " com.couchbase.client" %% " scala-client" % " 1.4.10" ,
43
+ " com.couchbase.client" %% " scala-client" % " 1.4.10-patch2 " ,
41
44
" javax.inject" % " javax.inject" % " 1" ,
42
45
" com.typesafe.play" %% " play-json" % " 2.10.0-RC5" ,
43
46
" com.typesafe" % " config" % configAxis.value.version,
You can’t perform that action at this time.
0 commit comments