Skip to content

Commit

Permalink
Fix module-info.java (#480)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelbranco80 authored Aug 8, 2024
1 parent 80df3f4 commit 267eb7a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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 / version := "3.25.4",
// Include the protobuf files in the JAR
Compile / unmanagedResourceDirectories += (ProtobufConfig / sourceDirectory).value
)
Expand Down
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object Dependencies {

val commonsCodec = "commons-codec" % "commons-codec" % "1.16.0"

val guava = "com.google.guava" % "guava" % "32.1.2-jre"
val guava = "com.google.guava" % "guava" % "32.1.3-jre"

val jacksonDeps = Seq(
"com.fasterxml.jackson.core" % "jackson-core" % "2.15.2",
Expand Down Expand Up @@ -57,11 +57,11 @@ object Dependencies {
val kryo = "com.esotericsoftware" % "kryo" % "5.5.0"
val commonsLang = "org.apache.commons" % "commons-lang3" % "3.13.0"
val apacheHttpClient = "org.apache.httpcomponents.client5" % "httpclient5" % "5.2.1"
val dropboxSDK = "com.dropbox.core" % "dropbox-core-sdk" % "5.4.5"
val dropboxSDK = "com.dropbox.core" % "dropbox-core-sdk" % "5.4.5-rawlabs"
val postgresqlDeps = "org.postgresql" % "postgresql" % "42.5.4"
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 snowflakeDeps = "net.snowflake" % "snowflake-jdbc" % "3.13.33-rawlabs"
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"
Expand Down
1 change: 1 addition & 0 deletions snapi-client/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
requires com.fasterxml.jackson.dataformat.csv;
requires com.fasterxml.jackson.core;
requires raw.sources;
requires raw.protocol;
requires raw.client;
requires raw.snapi.frontend;

Expand Down
1 change: 0 additions & 1 deletion snapi-truffle/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
requires ch.qos.logback.classic;
requires com.google.common;
requires jul.to.slf4j;
requires snowflake.jdbc;

uses raw.compiler.rql2.api.EntryExtension;
uses raw.compiler.rql2.api.PackageExtension;
Expand Down
1 change: 1 addition & 0 deletions sql-client/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
requires com.fasterxml.jackson.dataformat.csv;
requires com.fasterxml.jackson.core;
requires com.fasterxml.jackson.databind;
requires raw.protocol;
requires raw.client;
requires raw.sql.parser;
requires java.sql;
Expand Down

0 comments on commit 267eb7a

Please sign in to comment.