Skip to content

Commit ed206a9

Browse files
committed
fix(build): quick fix of JMH leak that was propagated via H2O-3
dependencies. In h2o-3 the leak is fixed in h2oai/h2o-3#16654, but this PR simply omits JMH libraries from putting into final assembly.
1 parent 14744a9 commit ed206a9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

assembly/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ configurations {
4343
exclude group: 'javax.xml.bind', module: 'jaxb-api' // a dependency of org.apache.hadoop:hadoop-yarn-common
4444
exclude group: 'net.sourceforge.f2j', module: 'arpack_combined_all'
4545
// a dependency of org.apache.spark:spark-graphx_2.11
46+
// Exclude leaked dependency from h2o-3 - fixed in https://github.com/h2oai/h2o-3/pull/16654
47+
exclude group: 'org.openjdk.jmh', module: 'jmh-core'
48+
exclude group: 'org.openjdk.jmh', module: 'jmh-generator-annprocess'
4649
}
4750
}
4851

0 commit comments

Comments
 (0)