-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated dependencies and dataproc module
- Loading branch information
1 parent
f416e0c
commit 01b26b3
Showing
9 changed files
with
137 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
object Versions { | ||
val Scala212 = "2.12.17" | ||
val Scala213 = "2.13.10" | ||
val Scala3 = "3.2.1" | ||
val AllScalaVersions = List(Scala212, Scala213, Scala3) | ||
val scala212 = "2.12.17" | ||
val scala213 = "2.13.10" | ||
val scala3 = "3.2.1" | ||
|
||
val ScalaJavaCollectionCompat = "2.10.0" | ||
val allScalaVersions: List[String] = List(scala212, scala213, scala3) | ||
|
||
val ZioVersion = "2.0.13" | ||
val ZioLogVersion = "2.1.12" | ||
val scalaJavaCollectionCompat = "2.10.0" | ||
|
||
val LogbackVersion = "1.4.7" | ||
val GcpBqVersion = "2.25.0" | ||
val GcpDpVersion = "4.13.0" | ||
val GcpGcsVersion = "2.22.1" | ||
val GcpPubSubVersion = "1.123.11" | ||
val CloudMonitorVersion = "3.17.0" | ||
val BatchVersion = "0.16.0" | ||
val zioVersion = "2.0.20" | ||
val zioLogVersion = "2.1.16" | ||
|
||
val logbackVersion = "1.4.14" | ||
val gcpBqVersion = "2.35.0" | ||
val gcpDpVersion = "4.29.0" | ||
val gcpGcsVersion = "2.30.1" | ||
val gcpPubSubVersion = "1.125.13" | ||
val cloudMonitorVersion = "3.33.0" | ||
val batchVersion = "0.32.0" | ||
} |