Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Gradle build files are written using Apache Groovy.

Table of Contents

Gradle Dependency Configuration

ColorPurpose
Gray TextRemoved in Gradle 7.0
Light GreenUsed to declare dependencies
Blue GrayConsumed by tasks to create dependency set/classpath
Light BlueTask

Main source set

image.pngImage Added


Test source set

image.pngImage Added

Note that the testRuntimeConfiguration was added to the default set of Java Gradle configurations to simulate the testRuntime configuration by Gradle 6.x and earlier.

Gradle Tests Parallelization

The build is configured to run on a given number of workers that are responsible for all the tasks of the build (running tests, compiling code, checkstyle, findbugs, ...)

...