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

build.gradle 826B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. }
  5. dependencies {
  6. classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.1.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. dependencies {
  21. // tag::jetty[]
  22. compile("org.springframework.boot:spring-boot-starter-web") {
  23. exclude module: "spring-boot-starter-tomcat"
  24. }
  25. compile("org.springframework.boot:spring-boot-starter-jetty")
  26. // end::jetty[]
  27. // tag::actuator[]
  28. compile("org.springframework.boot:spring-boot-starter-actuator")
  29. // end::actuator[]
  30. testCompile("junit:junit")
  31. }
  32. task wrapper(type: Wrapper) {
  33. gradleVersion = '1.11'
  34. }