I2P Address: [http://i2pgit.org]

Skip to content

Bugfix: Update plugin version to fix bug about shadow jar

Zlatin Balevsky requested to merge github/fork/theosotr/fix into master

Created by: theosotr

Hello

This commit fixes a bug regarding the creation of shadow jar.

This project uses a gradle plugin to generate the shadow jar of three sub-projects. However, the version 2.0.4 of this plugin has a bug regarding the creation of the shadow jar.

Specifically, the name of the generated shadow jars does not include the -all.jar suffix. As a result, the generated shadow jars conflict with those jars generated by the naive jar task. So, there might be a race condition depending on the order in which gradle executes tasks jar and shadowJar.

Later versions of this plugin fixes this problem (See here). Therefore this pull request update the version of the plugin so that the name of the generated shadow jars ends with the -all.jar suffix.

Merge request reports