Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
22632aac
Commit
22632aac
authored
Nov 21, 2015
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3859 from gnagy/master
gradle plugin: also list tasks in subprojects Cleanup gradle plugin file
parents
64e1252b
249d2229
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
31 deletions
+9
-31
gradle.plugin.zsh
plugins/gradle/gradle.plugin.zsh
+9
-31
No files found.
plugins/gradle/gradle.plugin.zsh
View file @
22632aac
#!zsh
##############################################################################
# A descriptive listing of core Gradle commands
############################################################################
...
...
@@ -54,22 +53,11 @@ function _gradle_arguments() {
##############################################################################
# Are we in a directory containing a build.gradle file?
############################################################################
function
in_gradle
()
{
if
[[
-f
build.gradle
]]
;
then
echo
1
fi
}
############################################################################## Examine the build.gradle file to see if its
# timestamp has changed, and if so, regen
# the .gradle_tasks cache file
# Examine the build.gradle file to see if its timestamp has changed;
# and if so, regenerate the .gradle_tasks cache file
############################################################################
_gradle_does_task_list_need_generating
()
{
[
!
-f
.gradletasknamecache
]
&&
return
0
;
[
build.gradle
-nt
.gradletasknamecache
]
&&
return
0
;
return
1
;
[[
!
-f
.gradletasknamecache
]]
||
[[
build.gradle
-nt
.gradletasknamecache
]]
}
...
...
@@ -77,22 +65,22 @@ _gradle_does_task_list_need_generating () {
# Discover the gradle tasks by running "gradle tasks --all"
############################################################################
_gradle_tasks
()
{
if
[
in_gradle
]
;
then
if
[
[
-f
build.gradle
]
]
;
then
_gradle_arguments
if
_gradle_does_task_list_need_generating
;
then
gradle tasks
--all
|
grep
"^[ ]*[a-zA-Z0-9:]*
\
-
\
"
|
sed
"s/ - .*
$/
/"
|
sed
"s/[
\
]*//"
>
.gradletasknamecache
gradle tasks
--all
|
awk
'/[a-zA-Z0-9:-]* - / {print $1}'
>
.gradletasknamecache
fi
compadd
-X
"==== Gradle Tasks ===="
`
cat
.gradletasknamecache
`
compadd
-X
"==== Gradle Tasks ===="
$(
cat
.gradletasknamecache
)
fi
}
_gradlew_tasks
()
{
if
[
in_gradle
]
;
then
if
[
[
-f
build.gradle
]
]
;
then
_gradle_arguments
if
_gradle_does_task_list_need_generating
;
then
./gradlew tasks
--all
|
grep
"^[ ]*[a-zA-Z0-9:]*
\
-
\
"
|
sed
"s/ - .*
$/
/"
|
sed
"s/[
\
]*//"
>
.gradletasknamecache
./gradlew tasks
--all
|
awk
'/[a-zA-Z0-9:-]* - / {print $1}'
>
.gradletasknamecache
fi
compadd
-X
"==== Gradlew Tasks ===="
`
cat
.gradletasknamecache
`
compadd
-X
"==== Gradlew Tasks ===="
$(
cat
.gradletasknamecache
)
fi
}
...
...
@@ -102,13 +90,3 @@ _gradlew_tasks () {
############################################################################
compdef _gradle_tasks gradle
compdef _gradlew_tasks gradlew
##############################################################################
# Open questions for future improvements:
# 1) Should 'gradle tasks' use --all or just the regular set?
# 2) Should gradlew use the same approach as gradle?
# 3) Should only the " - " be replaced with a colon so it can work
# with the richer descriptive method of _arguments?
# gradle tasks | grep "^[a-zA-Z0-9]*\ -\ " | sed "s/ - /\:/"
#############################################################################
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment