Skip to content

Commit

Permalink
Fix reference tests execution by excluding offending jar (#1466)
Browse files Browse the repository at this point in the history
This is a temporary workaround until we upgrade Linea Besu to use
the latest version of the KZG jar.

Signed-off-by: Fabio Di Fabio <[email protected]>
  • Loading branch information
fab-10 authored Oct 30, 2024
1 parent 681fa7c commit 624f9cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/dist.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jar {
}

from {
configurations.runtimeClasspath.filter( {! (it.name =~ /log4j.*\.jar/ ) && ! (it.name =~ /vertx.*\.jar/ )} )
configurations.runtimeClasspath.filter( {! (it.name =~ /log4j.*\.jar/ ) && ! (it.name =~ /vertx.*\.jar/ ) && it.name != 'jc-kzg-4844-2.0.0.jar'} )
.collect {it.isDirectory() ? it : zipTree(it) }
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/*.DSA', 'ch.qos.logback'
Expand Down

0 comments on commit 624f9cf

Please sign in to comment.