Building an Application with Spring Boot :: Learn how to build an application with minimal configuration. https://spring.io/guides/gs/spring-boot/

build.gradle 789B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. }
  5. dependencies {
  6. classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.2.RELEASE")
  7. }
  8. }
  9. apply plugin: 'java'
  10. apply plugin: 'eclipse'
  11. apply plugin: 'idea'
  12. apply plugin: 'spring-boot'
  13. jar {
  14. baseName = 'gs-spring-boot'
  15. version = '0.1.0'
  16. }
  17. repositories {
  18. mavenCentral()
  19. }
  20. sourceCompatibility = 1.7
  21. targetCompatibility = 1.7
  22. dependencies {
  23. compile("org.springframework.boot:spring-boot-starter-web")
  24. // tag::actuator[]
  25. compile("org.springframework.boot:spring-boot-starter-actuator")
  26. // end::actuator[]
  27. // tag::tests[]
  28. testCompile("org.springframework.boot:spring-boot-starter-test")
  29. // end::tests[]
  30. }
  31. task wrapper(type: Wrapper) {
  32. gradleVersion = '2.3'
  33. }