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:
Chris Beams 2021-11-13 14:43:03 +01:00
parent e09d56b696
commit d7129a2d19
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73

View File

@ -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">