Added tests, removed waiting for key

This commit is contained in:
Marcin Grzejszczak
2017-03-07 16:04:58 +01:00
parent 6b84c18cc7
commit 6c1b65fa77
5 changed files with 258 additions and 14 deletions

View File

@@ -41,8 +41,6 @@ public class ReleaserApplication implements CommandLineRunner {
@Override public void run(String... strings) throws Exception {
String workingDir = System.getProperty("user.dir");
log.info("Will run the application for root folder [{}]", workingDir);
log.info("Press Enter to continue...");
System.in.read();
this.projectUpdater.updateProject(new File(workingDir));
System.exit(0);
}