Fix issues with the maven startup-archetype
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / cli / src / main / java / __packageInPathFormat__ / cli / commands / __classPrefix__CliTestCommand.java
index 65ec5f750d3ffb91b9de28469c4edea82c69a93e..d3adf674467dc589e2a5c9d4c36c5b0b4e461984 100644 (file)
@@ -21,7 +21,8 @@ import org.slf4j.LoggerFactory;
  * This is an example class. The class name can be renamed to match the command implementation that it will invoke.
  * Specify command details by updating the fields in the Command annotation below.
  */
-@Command(name = "test-command", scope = "add the scope of the command, usually project name", description = "add a description for the command")
+@Command(name = "test-command", scope = "add the scope of the command, usually project name",
+        description = "add a description for the command")
 public class ${classPrefix}CliTestCommand extends AbstractAction {
 
     private static final Logger LOG = LoggerFactory.getLogger(${classPrefix}CliTestCommand.class);
@@ -53,4 +54,4 @@ public class ${classPrefix}CliTestCommand extends AbstractAction {
         final String testMessage = (String) service.testCommand(testArgument);
         return testMessage;
     }
-}
\ No newline at end of file
+}