* BAEL-1216: improve tests * BAEL-1448: Update Spring 5 articles to use the release version * Setting up the Maven Wrapper on a maven project
12 lines
311 B
Java
12 lines
311 B
Java
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);
|
|
}
|
|
}
|