Skip to content

Commit

Permalink
Add reflectasm as a require dependency for kryo
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 apache#1165
  • Loading branch information
ajorgensen committed Jul 27, 2016
1 parent f9bcd3b commit 5a7af0a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,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 Expand Up @@ -237,6 +242,11 @@ maven_jar(
artifact = "org.apache.reef:reef-utils:" + reef_version
)

maven_jar(
name = "org_slf4j_log4j_over_slf4j",
artifact = "org.slf4j:log4j-over-slf4j:" + slf4j_version
)

maven_jar(
name = "org_slf4j_slf4j_api",
artifact = "org.slf4j:slf4j-api:" + slf4j_version
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 5a7af0a

Please sign in to comment.