Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/MavenDeploy.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

includeTargets << new File(releasePluginDir, "scripts/_GrailsMaven.groovy")

target(main:"Installs a Grails plugin as a Maven artefact") {
target(main:"Installs a Grails plugin as a Maven artifact") {
depends(parseArguments, mavenDeploy)
println "Maven deploy complete."
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/MavenInstall.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

includeTargets << new File(releasePluginDir, "scripts/_GrailsMaven.groovy")

target(main:"Installs a Grails plugin as a Maven artefact") {
target(main:"Installs a Grails plugin as a Maven artifact") {
depends(parseArguments, mavenInstall)
println "Maven install complete."
}
Expand Down
4 changes: 2 additions & 2 deletions scripts/PublishPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ target(publishPlugin: "Publishes a plugin to a Maven repository.") {

if (argsMap["prompt-auth"]) {
def inputHelper = new CommandLineHelper()
username = usernput(
username = userInput(
inputHelper,
"Username for repository: ",
"You haven't configured the plugin repository username - required in non-interactive mode")
Expand All @@ -222,7 +222,7 @@ target(publishPlugin: "Publishes a plugin to a Maven repository.") {
"Password for repository: ",
"You haven't configured the plugin repository password - required in non-interactive mode")

repoDfn.configurer = { authentication username: username, password: password }
repoDefn.configurer = { authentication username: username, password: password }
}

deployer = classLoader.loadClass("grails.plugins.publish.maven.MavenDeployer").newInstance(ant, repoDefn, protocol)
Expand Down