BAEL-1318: Quick Guide to Setting up the Maven Wrapper on an Application (#3371)

* BAEL-1216: improve tests

* BAEL-1448: Update Spring 5 articles to use the release version

* Setting up the Maven Wrapper on a maven project
This commit is contained in:
Dassi orleando
2018-01-07 17:42:06 +01:00
committed by maibin
parent 477e8cfef4
commit 44380f6bd9
10 changed files with 476 additions and 0 deletions
@@ -0,0 +1,11 @@
package com.baeldung;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MvnWrapperApplication {
public static void main(String[] args) {
SpringApplication.run(MvnWrapperApplication.class, args);
}
}