Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion gradle/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,27 @@ Recreate the dependency verification file as follows:
This configures Gradle to trust automatically all sources.
See also: https://docs.gradle.org/current/userguide/dependency_verification.html#sec:skipping-javadocs

7. Commit the final version of the file to the repository.
7. Resolve metadata used only during IDE imports.

Some artifacts cannot be discovered by Gradle automatically. For example,
IDEs like IntelliJ may request .module and .bom metadata for the Groovy
libraries bundled with Gradle.

In order to add the artifact entries for those dependencies, temporarily
add the following setting to gradle.properties:

org.gradle.dependency.verification=lenient

Reload the Gradle project in IntelliJ with source downloading enabled.
Inspect the dependency verification report under:

build/reports/dependency-verification/

After adding the artifact entries, remove the temporary lenient setting
and reload the Gradle project again to verify that dependency verification
succeeds in strict mode.

8. Commit the final version of the file to the repository.

These commands will cause Gradle to compute the requested checksums
directly from the newly downloaded artifacts and add them to the file.
Expand Down
63 changes: 63 additions & 0 deletions gradle/verification-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,69 @@
<sha256 value="ff513db0361fd41237bef4784968bc15aae478d4ec0a9496f811072ccaf3841d" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy" version="4.0.28">
<artifact name="groovy-4.0.28.module">
<sha256 value="a1e97728b14906c419081cb9432fd634de55f57f2c4cd6de50e9191999492266" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-ant" version="4.0.28">
<artifact name="groovy-ant-4.0.28.module">
<sha256 value="541ccaf6efcbacaee67ade47be29e67c417f2d23e3ff7d64785ce84ec85de039" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-astbuilder" version="4.0.28">
<artifact name="groovy-astbuilder-4.0.28.module">
<sha256 value="563b307fede32fe2658efa6072d3322e7ac543ee231f816d0a93b44bed638e11" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-bom" version="4.0.28">
<artifact name="groovy-bom-4.0.28.module">
<sha256 value="830d3868c39e7bb30ff6535e8a5ba6dee7d9b81ba3b44baaf10f1506a720745a" origin="Generated by Gradle"/>
</artifact>
<artifact name="groovy-bom-4.0.28.pom">
<sha256 value="f3052cce59b599d5369e4fc1d9fb2e9fa395aa8e772bedc2dcd7907cd18a3d06" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-datetime" version="4.0.28">
<artifact name="groovy-datetime-4.0.28.module">
<sha256 value="4f224e1526b0065b4b5e218bcf0e23ff5fe2e679c7f0812af719974df00fb444" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-dateutil" version="4.0.28">
<artifact name="groovy-dateutil-4.0.28.module">
<sha256 value="0018ef58ec36cdc1029e60e4e04dec93049b0923f72b5115b5f92fcfbd8b2d93" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-docgenerator" version="4.0.28">
<artifact name="groovy-docgenerator-4.0.28.module">
<sha256 value="418c133de69868e77f47bb3fd511c7e4c1998b596a98744f15005856dd0ee45e" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-groovydoc" version="4.0.28">
<artifact name="groovy-groovydoc-4.0.28.module">
<sha256 value="94ff98249bfe0ff706f466e1f3f06bc5510460f68a17ac1e00a89acdad7d1a04" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-json" version="4.0.28">
<artifact name="groovy-json-4.0.28.module">
<sha256 value="a7e5d21d82c320ad652825167ba874e997247c0f440cd0b98dec8eacf8acb008" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-nio" version="4.0.28">
<artifact name="groovy-nio-4.0.28.module">
<sha256 value="03d1dfce27999715c14cae6b352dc60c10162c960e3d19dea933a377367e60b0" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-templates" version="4.0.28">
<artifact name="groovy-templates-4.0.28.module">
<sha256 value="5e2ec6e3ac0b5ee80b3a4195429165677fffa45a4af4e92004f73dac46d1cc59" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.groovy" name="groovy-xml" version="4.0.28">
<artifact name="groovy-xml-4.0.28.module">
<sha256 value="8ac540abb8ff56aa8bd67a1b3126b84f90f7ab36631c02622e4e10a9629c1080" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="org.apache.lucene" name="lucene-core" version="7.7.3">
<artifact name="lucene-core-7.7.3.jar">
<sha256 value="8eb03335c1a3c6a8b188df74d761baa83569953582ab440b534c88449ea8e0de" origin="Generated by Gradle"/>
Expand Down