Skip to content

Commit 0dae87d

Browse files
committed
#33 fix command names
1 parent 748a018 commit 0dae87d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/groovy/repo/build/command/BuildPomCommand.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class BuildPomCommand extends AbstractCommand {
66
public static final String ACTION_EXECUTE = 'buildPomCommandExecute'
77

88
BuildPomCommand() {
9-
super('execute-pom', 'Generate main pom.xml for all components')
9+
super('build-pom', 'Generate main pom.xml for all components')
1010
}
1111

1212
void execute(RepoEnv env, CliOptions options) {

src/main/groovy/repo/build/command/MvnBuildCommand.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import repo.build.*
44

55
class MvnBuildCommand extends AbstractCommand {
66
MvnBuildCommand() {
7-
super('mvn-execute', 'Execute mvn clean install for parent component, then execute mvn clean install for whole project ')
7+
super('mvn-build', 'Execute mvn clean install for parent component, then execute mvn clean install for whole project ')
88
}
99

1010
public static final String ACTION_EXECUTE = 'mvnBuildExecute'

0 commit comments

Comments
 (0)