![JAR search and dependency download from the Maven repository](/logo.png)
ework.profiles.base.2023.0.1.source-code.list-plugins.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of base Show documentation
Show all versions of base Show documentation
A Grace profile for other profiles to extend from.
description("Lists available plugins from the Plugin Repository") {
usage "grace list-plugins"
}
try {
console.addStatus "Available Plugins"
def text = new URL('https://repo1.maven.org/maven2/org/graceframework/plugins/').text
text.eachMatch(/.+/) {
console.log "* ${it[1]}"
}
}
catch(Throwable e) {
console.error "Failed to list plugins", e
return false
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy