```repositories { jcenter() } dependencies { co...
# gradle
c
Copy code
repositories {
	jcenter()
}

dependencies {
	compile("org.jetbrains.kotlin:kotlin-stdlib:1.0.6")
	compile("org.codehaus.groovy:groovy-all")
	compile("org.springframework.boot:spring-boot-starter-web")
	compile("org.springframework.boot:spring-boot-starter-security")

	testCompile("org.springframework.boot:spring-boot-starter-test")
	testCompile("org.spockframework:spock-core:1.0-groovy-2.4")
	testCompile("org.spockframework:spock-spring:1.0-groovy-2.4")
}