How to enable verification of dependencies with buildship in Eclipse?
I habe add the file \gradle\verification-metadata.xml
<?xml version="1.0" encoding="UTF-8"?> <verification-metadata xmlns="https://schema.gradle.org/dependency-verification" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://schema.gradle.org/dependency-verification https://schema.gradle.org/dependency-verification/dependency-verification-1.0.xsd"> <configuration> <verify-metadata>true</verify-metadata> <verify-signatures>false</verify-signatures> </configuration> </verification-metadata>
- Gradle 6.7.1, Eclipse 2020-09, Buildship 3.1.4
- Have a dependency to a corrupt file
- clear the Gradle cache
- Refresh the Eclipse project
- And it download the corrupt artifact and add it. The checksum files will not requested.
- In the log I see “Dependency verification is an incubating feature.”
What else I need to do?