-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Previous commit introduced a couple incorrect dependency versions, na…
…mely using 2.12 as the target Scala version, instead of intended 2.11. Additionally adds a few other missing dependencies, and upgrades Kafka libraries to use version 2.4.1 (#54) Co-authored-by: Daniel Fritsch <[email protected]>
- Loading branch information
1 parent
155dfd5
commit 9afa847
Showing
22 changed files
with
348 additions
and
158 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
java_library( | ||
name = "jackson_datatype_jdk8", | ||
visibility = [ | ||
"//3rdparty/jvm:__subpackages__", | ||
], | ||
exports = [ | ||
"//external:jar/com/fasterxml/jackson/datatype/jackson_datatype_jdk8", | ||
], | ||
runtime_deps = [ | ||
"//3rdparty/jvm/com/fasterxml/jackson/core:jackson_core", | ||
"//3rdparty/jvm/com/fasterxml/jackson/core:jackson_databind", | ||
], | ||
) |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
java_library( | ||
name = "paranamer", | ||
visibility = [ | ||
"//3rdparty/jvm:__subpackages__", | ||
], | ||
exports = [ | ||
"//external:jar/com/thoughtworks/paranamer/paranamer", | ||
], | ||
) |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
java_library( | ||
name = "netty", | ||
visibility = [ | ||
"//3rdparty/jvm:__subpackages__", | ||
], | ||
exports = [ | ||
"//external:jar/io/netty/netty", | ||
], | ||
) |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
java_library( | ||
name = "jline", | ||
visibility = [ | ||
"//3rdparty/jvm:__subpackages__", | ||
], | ||
exports = [ | ||
"//external:jar/jline/jline", | ||
], | ||
) |
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,22 +1,19 @@ | ||
java_library( | ||
scala_library( | ||
name = "scala_library", | ||
visibility = [ | ||
"//visibility:public", | ||
], | ||
exports = [ | ||
"//external:jar/org/scala_lang/scala_library", | ||
"@io_bazel_rules_scala_scala_library", | ||
], | ||
) | ||
|
||
java_library( | ||
scala_library( | ||
name = "scala_reflect", | ||
visibility = [ | ||
"//3rdparty/jvm:__subpackages__", | ||
"//visibility:public", | ||
], | ||
exports = [ | ||
"//external:jar/org/scala_lang/scala_reflect", | ||
], | ||
runtime_deps = [ | ||
":scala_library", | ||
"@io_bazel_rules_scala_scala_reflect", | ||
], | ||
) |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
java_library( | ||
name = "scala_collection_compat_2_11", | ||
visibility = [ | ||
"//3rdparty/jvm:__subpackages__", | ||
], | ||
exports = [ | ||
"//external:jar/org/scala_lang/modules/scala_collection_compat_2_11", | ||
], | ||
runtime_deps = [ | ||
"//3rdparty/jvm/org/scala_lang:scala_library", | ||
], | ||
) | ||
|
||
scala_import( | ||
name = "scala_java8_compat", | ||
jars = [ | ||
"//external:jar/org/scala_lang/modules/scala_java8_compat_2_11", | ||
], | ||
visibility = [ | ||
"//visibility:public", | ||
], | ||
runtime_deps = [ | ||
"//3rdparty/jvm/org/scala_lang:scala_library", | ||
], | ||
) |
Oops, something went wrong.