Skip to content

Commit

Permalink
custom deps: add ojdbc10
Browse files Browse the repository at this point in the history
  • Loading branch information
datYori committed Jun 13, 2024
1 parent 776aa57 commit 4689a23
Showing 1 changed file with 5 additions and 1 deletion.
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

0 comments on commit 4689a23

Please sign in to comment.