30 [[ $COMP_CWORD -gt 1 ]] && prev=${COMP_WORDS[COMP_CWORD-1]} |
30 [[ $COMP_CWORD -gt 1 ]] && prev=${COMP_WORDS[COMP_CWORD-1]} |
31 |
31 |
32 local _tasks_full='help - Displays a help message. |
32 local _tasks_full='help - Displays a help message. |
33 wrapper - Create ./gradlew. |
33 wrapper - Create ./gradlew. |
34 assemble - Assembles the outputs of this project. |
34 assemble - Assembles the outputs of this project. |
35 bootJar - Assembles an executable jar archive containing the main classes and their dependencies. |
|
36 build - Assembles and tests this project. |
35 build - Assembles and tests this project. |
37 buildDependents - Assembles and tests this project and all projects that depend on it. |
36 buildDependents - Assembles and tests this project and all projects that depend on it. |
38 buildNeeded - Assembles and tests this project and all projects it depends on. |
37 buildNeeded - Assembles and tests this project and all projects it depends on. |
39 classes - Assembles main classes. |
38 classes - Assembles main classes. |
40 compileJava - Compile src/main/java. |
39 compileJava - Compile src/main/java. |
61 check - Runs all checks. |
60 check - Runs all checks. |
62 test - Runs the unit tests. |
61 test - Runs the unit tests. |
63 init - Generate basic Gradle project files. |
62 init - Generate basic Gradle project files. |
64 install - Installs the archives artifacts into the local Maven repository. |
63 install - Installs the archives artifacts into the local Maven repository. |
65 javadoc - Generates Javadoc API documentation for the main source code. |
64 javadoc - Generates Javadoc API documentation for the main source code. |
|
65 bootJar - Assembles an executable jar archive containing the main classes and their dependencies. |
66 bootRun - Run the project with support for auto-detecting main class and reloading static resources |
66 bootRun - Run the project with support for auto-detecting main class and reloading static resources |
|
67 artifactoryDeploy - Deploys artifacts and build-info to Artifactory |
|
68 artifactoryPublish - Adds artifacts and generates build-info to be later deployed to Artifactory |
67 flywayBaseline - Baselines an existing database, excluding all migrations up to and including baselineVersion. |
69 flywayBaseline - Baselines an existing database, excluding all migrations up to and including baselineVersion. |
68 flywayClean - Drops all objects in the configured schemas. |
70 flywayClean - Drops all objects in the configured schemas. |
69 flywayInfo - Prints the details and status information about all the migrations. |
71 flywayInfo - Prints the details and status information about all the migrations. |
70 flywayMigrate - Migrates the schema to the latest version. |
72 flywayMigrate - Migrates the schema to the latest version. |
71 flywayRepair - Repairs the Flyway metadata table. |
73 flywayRepair - Repairs the Flyway metadata table. |