BAEL-3248: Restore maven-dependency-plugin configuration (#8419)

This commit is contained in:
kwoyke
2019-12-23 09:40:25 +01:00
committed by Grzegorz Piwowarek
parent 7c8a7412d2
commit e9613ec021
2 changed files with 21 additions and 1 deletions
@@ -0,0 +1,17 @@
package com.baeldung;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import com.baeldung.Application;
@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
public class SpringContextTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}