Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Add reflectasm as a require dependency for kryo (#1166)
Browse files Browse the repository at this point in the history
This dependency is required for kryo to properly determine how to
serialize or deserialize data tuples. This fixes #1165
  • Loading branch information
ajorgensen committed Jul 31, 2016
1 parent 72336b6 commit fb71bc4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,11 @@ maven_jar(
artifact = "com.esotericsoftware:kryo:3.0.3",
)

maven_jar(
name = "com_esotericsoftware_reflectasm",
artifact = "com.esotericsoftware:reflectasm:1.11.3",
)

maven_jar(
name = "org_apache_mesos_mesos",
artifact = "org.apache.mesos:mesos:0.22.0",
Expand Down
1 change: 1 addition & 0 deletions third_party/java/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ java_library(
exports = [ "@com_esotericsoftware_kryo//jar" ],
deps = [
"@com_esotericsoftware_kryo//jar",
"@com_esotericsoftware_reflectasm//jar",
"@com_esotericsoftware_minlog//jar",
"@org_objenesis_objenesis//jar",
],
Expand Down

0 comments on commit fb71bc4

Please sign in to comment.