Skip to content

Commit

Permalink
Add ojdbc10 to deps
Browse files Browse the repository at this point in the history
  • Loading branch information
bgaidioz committed Jun 12, 2024
1 parent 776aa57 commit 04c6bc2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion deps/others/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@ val jacksonModuleScala = "com.fasterxml.jackson.module" %% "jackson-module-scala

val mysqlModule = "com.mysql" % "mysql-connector-j" % "8.1.0"

val ojdbc10 = "com.oracle.database.jdbc" % "ojdbc10" % "19.23.0.0"

libraryDependencies ++= Seq(
jwtCore,
scalaLogging,
jacksonModuleScala,
mysqlModule
mysqlModule,
ojdbc10
)

// Map of artifact ID to module name
Expand All @@ -26,6 +29,7 @@ val moduleNames = Map(
"scala-logging" -> "typesafe.scalalogging",
"jackson-module-scala" -> "com.fasterxml.jackson.scala",
"mysql-connector-j" -> "mysql.connector.j",
"ojdbc10" -> "ojdbc10"
)

def updatePom(pomFile: File, newVersion: String): Unit = {
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ object Dependencies {
val mysqlDeps = "com.mysql" % "mysql-connector-j" % "8.1.0-rawlabs"
val mssqlDeps = "com.microsoft.sqlserver" % "mssql-jdbc" % "7.0.0.jre10"
val snowflakeDeps = "net.snowflake" % "snowflake-jdbc" % "3.13.33"
val oracleDeps = "com.oracle.database.jdbc" % "ojdbc10" % "19.23.0.0"
val oracleDeps = "com.oracle.database.jdbc" % "ojdbc10" % "19.23.0.0-rawlabs"
val teradataDeps = "com.teradata.jdbc" % "terajdbc" % "20.00.00.24"
val icuDeps = "com.ibm.icu" % "icu4j" % "73.2"
val poiDeps = Seq(
Expand Down

0 comments on commit 04c6bc2

Please sign in to comment.