Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelbranco80 committed Aug 8, 2024
1 parent dd862fa commit aeb8bb3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ lazy val protocol = (project in file("protocol"))
commonSettings,
commonCompileSettings,
testSettings,
ProtobufConfig / version := "3.18.0",
libraryDependencies += "com.google.protobuf" % "protobuf-java" % (ProtobufConfig / version).value,
ProtobufConfig / protobufGrpcEnabled := true,
// Include the protobuf files in the JAR
Compile / unmanagedResourceDirectories += (ProtobufConfig / sourceDirectory).value
)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ libraryDependencies += "commons-io" % "commons-io" % "2.11.0"

addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0")

addSbtPlugin("com.github.sbt" % "sbt-protobuf" % "0.7.1")
addSbtPlugin("com.github.sbt" % "sbt-protobuf" % "0.8.0")
Original file line number Diff line number Diff line change
Expand Up @@ -70,35 +70,35 @@ object TestCredentials {
.newBuilder()
.setAccessSecretKey(S3AccessSecretKey.newBuilder().setAccessKey(accessKeyId).setSecretKey(secretKeyId))
.setRegion("eu-west-1")
.buildPartial()
.build()

val UnitTestPrivateBucket2 = "rawlabs-unit-tests"
val UnitTestPrivateBucket2Cred = S3Config
.newBuilder()
.setAccessSecretKey(S3AccessSecretKey.newBuilder().setAccessKey(accessKeyId).setSecretKey(secretKeyId))
.setRegion("eu-west-1")
.buildPartial()
.build()

val UnitTestEmptyBucketPrivateBucket = "rawlabs-unit-test-empty-bucket"
val UnitTestEmptyBucketPrivateBucketCred = S3Config
.newBuilder()
.setAccessSecretKey(S3AccessSecretKey.newBuilder().setAccessKey(accessKeyId).setSecretKey(secretKeyId))
.setRegion("eu-west-1")
.buildPartial()
.build()

val UnitTestListRootPrivateBucket = "rawlabs-unit-test-list-root"
val UnitTestListRootPrivateBucketCred = S3Config
.newBuilder()
.setAccessSecretKey(S3AccessSecretKey.newBuilder().setAccessKey(accessKeyId).setSecretKey(secretKeyId))
.setRegion("eu-west-1")
.buildPartial()
.build()

val unitTestPrivateBucketUsEast1 = "rawlabs-unit-tests-us-east-1"
val unitTestPrivateBucketUsEast1Cred = S3Config
.newBuilder()
.setAccessSecretKey(S3AccessSecretKey.newBuilder().setAccessKey(accessKeyId).setSecretKey(secretKeyId))
.setRegion("eu-west-1")
.buildPartial()
.build()

///////////////////////////////////////////////////////////////////////////
// Jdbc Credentials
Expand Down

0 comments on commit aeb8bb3

Please sign in to comment.