mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 07:02:51 +08:00
a254cfc841
Before this, Gradle 4.4 was required to build the Gradle wrapper and thus run the Java tests. This was because of all the stuff that had to be configured when running the wrapper task using the build.gradle file. Now we use a config file that only specifies the required Gradle version and nothing else to run the wrapper task. This allows tests to be run with Gradle versions beginning with 2.
4 lines
40 B
Groovy
4 lines
40 B
Groovy
wrapper {
|
|
gradleVersion = '4.4.1'
|
|
}
|