BAEL-1776: Add description and change module name (#4607)

* Add description and change module name

* Fix mvn parent in spring-boot-custom-starter
This commit is contained in:
Felipe Santiago Corro
2018-07-06 01:27:12 -03:00
committed by KevinGilmore
parent 59277b4339
commit bebaf6d339
13 changed files with 34 additions and 20 deletions

View File

@@ -5,7 +5,7 @@ import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import com.baeldung.greeter.Greeter;
import com.baeldung.greeter.library.Greeter;
@SpringBootApplication
public class GreeterSampleApplication implements CommandLineRunner {

View File

@@ -10,7 +10,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.baeldung.greeter.Greeter;
import com.baeldung.greeter.library.Greeter;
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = GreeterSampleApplication.class)