Closed
Description
Affects: project wiki / 5.2.0.BUILD-SNAPSHOT
Commit 7ce1f5e (related to #23282) changes gradle task used for pushing artifacts to local maven repository, making instructions on project wiki obsolete:
https://github.com/spring-projects/spring-framework/wiki/Build-from-Source
./gradlew install -x javadoc
results in Task 'install' not found in root project 'spring'.
error. Correct comand is:
./gradlew publishToMavenLocal -x javadoc
This change is not compatible with branches 5.1.x and earlier, so perhaps wiki article should be expanded to reflect that or install task should be restored to preserve old behavior.