build.gradle 342 B

123456789101112
  1. apply from: BOOT_SAMPLE_GRADLE
  2. springBoot {
  3. mainClass = 'org.springframework.security.samples.InsecureApplication'
  4. }
  5. dependencies {
  6. compile "org.springframework.boot:spring-boot-starter-web",
  7. "org.springframework.boot:spring-boot-starter-thymeleaf"
  8. testCompile "org.springframework.boot:spring-boot-starter-test"
  9. }