Building a RESTful Web Service :: Learn how to create a RESTful web service with Spring. :: spring-boot http://spring.io/guides/gs/rest-service/

build.gradle 642B

123456789101112131415161718192021222324252627282930313233
  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. }
  5. dependencies {
  6. classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.3.RELEASE")
  7. }
  8. }
  9. apply plugin: 'java'
  10. apply plugin: 'eclipse'
  11. apply plugin: 'idea'
  12. apply plugin: 'org.springframework.boot'
  13. apply plugin: 'io.spring.dependency-management'
  14. bootJar {
  15. baseName = 'gs-rest-service'
  16. version = '0.1.0'
  17. }
  18. repositories {
  19. mavenCentral()
  20. }
  21. sourceCompatibility = 1.8
  22. targetCompatibility = 1.8
  23. dependencies {
  24. compile("org.springframework.boot:spring-boot-starter-web")
  25. testCompile('org.springframework.boot:spring-boot-starter-test')
  26. }