#BAEL-100 tests and update spring boot to 1.5.1.RELEASE (#1135)

* add tests for #BAEL-100 and upgrade spring boot to 1.5.1.RELEASE

* uncomment integration test configurations
This commit is contained in:
Tian Baoqiang
2017-02-09 02:51:21 +08:00
committed by Grzegorz Piwowarek
parent 7aa774352d
commit 2c8e3c9179
20 changed files with 444 additions and 18 deletions
@@ -0,0 +1,13 @@
package com.baeldung.webjar;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@SpringBootApplication
public class WebjarsdemoApplication {
public static void main(String[] args) {
SpringApplication.run(WebjarsdemoApplication.class, args);
}
}