File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/main/java/org/codejive/jpm Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 36
36
mixinStandardHelpOptions = true ,
37
37
versionProvider = Version .class ,
38
38
description = "Simple command line tool for managing Maven artifacts" ,
39
- subcommands = {Main .Copy .class , Main .Sync .class , Main .Install .class , Main .PrintPath .class })
39
+ subcommands = {
40
+ Main .Copy .class ,
41
+ Main .Search .class ,
42
+ Main .Install .class ,
43
+ Main .PrintPath .class
44
+ })
40
45
public class Main {
41
46
42
47
@ Command (
@@ -78,7 +83,7 @@ public Integer call() throws Exception {
78
83
description =
79
84
"Finds and returns the names of those artifacts that match the given (partial) name.\n \n "
80
85
+ "Example:\n jpm search httpclient\n " )
81
- static class Sync implements Callable <Integer > {
86
+ static class Search implements Callable <Integer > {
82
87
@ Mixin QuietMixin quietMixin ;
83
88
@ Mixin CopyMixin copyMixin ;
84
89
You can’t perform that action at this time.
0 commit comments