mirror of
https://github.com/bisq-network/bisq.git
synced 2025-01-18 13:25:14 +01:00
Disable verification for javadoc and source jars
Prior to this commit, IDEA would fail to build the project because it downloads javadoc and source jars that do not have entries in the verification file. These artifacts are now trusted by default as documented at https://docs.gradle.org/current/userguide/dependency_verification.html#sec:skipping-javadocs
This commit is contained in:
parent
e09d56b696
commit
d7129a2d19
@ -3,6 +3,10 @@
|
||||
<configuration>
|
||||
<verify-metadata>true</verify-metadata>
|
||||
<verify-signatures>false</verify-signatures>
|
||||
<trusted-artifacts>
|
||||
<trust file=".*-javadoc[.]jar" regex="true"/>
|
||||
<trust file=".*-sources[.]jar" regex="true"/>
|
||||
</trusted-artifacts>
|
||||
</configuration>
|
||||
<components>
|
||||
<component group="aopalliance" name="aopalliance" version="1.0">
|
||||
|
Loading…
Reference in New Issue
Block a user