Add tests for loading dependencies in starters without parent

This commit is contained in:
Dave Syer
2013-11-07 16:05:01 +00:00
parent 578fadf6f9
commit 0c1aa1942e
5 changed files with 59 additions and 4 deletions

View File

@@ -2,14 +2,11 @@ package org.test
@Grab("spring-boot-starter-actuator")
@Controller
@RestController
class SampleController {
@RequestMapping("/")
@ResponseBody
public def hello() {
[message: "Hello World!"]
}
}

View File

@@ -0,0 +1,13 @@
package org.test
@Grab("spring-boot-starter-security")
@Grab("spring-boot-starter-actuator")
@RestController
class SampleController {
@RequestMapping("/")
public def hello() {
[message: "Hello World!"]
}
}