PAN-7 Updated the build.gradle files

This commit is contained in:
2019-02-17 23:17:15 -07:00
parent abefb397e3
commit da673068bb
6 changed files with 23 additions and 30 deletions
@@ -1,13 +0,0 @@
package edu.msudenver.tsp.website;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@RequestMapping("/")
public String index() {
return "Welcome to Project Pandamonium!";
}
}
@@ -1,12 +0,0 @@
package edu.msudenver.tsp.website;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan
//@PropertySource("classpath:development.properties")
public class WebsiteConfig {
}