Updated the build.gradle to delegate down to the subprojects

This commit is contained in:
2019-02-03 20:46:37 -07:00
parent d008757b53
commit fc36fa994e
19 changed files with 38 additions and 86 deletions
@@ -1,4 +1,4 @@
package edu.msudenver.tsp.website;
package hello;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.CommandLineRunner;
@@ -1,4 +1,4 @@
package edu.msudenver.tsp.website;
package hello;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -1,6 +1,6 @@
package edu.msudenver.tsp.website.integrationTest;
import edu.msudenver.tsp.website.Application;
import hello.Application;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;