diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2019-03-16 10:30:07 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-03-27 20:21:04 +0100 |
commit | 8e0777254fb78aaba0e1c0645ad945da1c2095f5 (patch) | |
tree | 3655feb869c8d7c6bfaad4b5d712ddd3998d6892 /README.md | |
parent | 45fca78734dc2d8e02252ae0fadfd419b618632e (diff) | |
download | sonarqube-8e0777254fb78aaba0e1c0645ad945da1c2095f5.tar.gz sonarqube-8e0777254fb78aaba0e1c0645ad945da1c2095f5.zip |
Document and upgrade Gradle plugins
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 27 |
1 files changed, 9 insertions, 18 deletions
diff --git a/README.md b/README.md index 1ef2f1f7c1c..b874365af63 100644 --- a/README.md +++ b/README.md @@ -61,26 +61,17 @@ If the project has never been built, then build it as usual (see previous sectio ./gradlew ide -Then simply open the root file `build.gradle` as a project in Intellij or Eclipse. +Then open the root file `build.gradle` as a project in Intellij or Eclipse. -### Find available updates of dependencies +### Gradle Hints -Execute from project base directory: - - ./gradlew dependencyUpdates - -### Update the files missing the license header - -Execute from project base directory: - - ./gradlew licenseFormat --rerun-tasks - -### List all dependencies - -Execute from project base directory: - - ./gradlew printDependencies - +| ./gradlew command | Description | +|---|---| +| `dependencies`| list dependencies | +| `dependencyCheckAnalyze` | list vulnerable dependencies | +| `dependencyUpdates` | list the dependencies that could be updated | +| `licenseFormat --rerun-tasks` | fix source headers by applying HEADER.txt | +| `wrapper --gradle-version 5.2.1` | upgrade wrapper | License ------- |