build.gradle 887B

123456789101112131415161718192021222324252627282930313233343536
  1. buildscript {
  2. ext {
  3. springBootVersion = '2.0.0.M7'
  4. }
  5. repositories {
  6. mavenCentral()
  7. maven { url "https://repo.spring.io/snapshot" }
  8. maven { url "https://repo.spring.io/milestone" }
  9. }
  10. dependencies {
  11. classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  12. }
  13. }
  14. apply plugin: 'java'
  15. apply plugin: 'eclipse'
  16. apply plugin: 'org.springframework.boot'
  17. apply plugin: 'io.spring.dependency-management'
  18. version = '0.0.1-SNAPSHOT'
  19. sourceCompatibility = 1.8
  20. repositories {
  21. mavenCentral()
  22. maven { url "https://repo.spring.io/snapshot" }
  23. maven { url "https://repo.spring.io/milestone" }
  24. }
  25. dependencies {
  26. compile('org.springframework.boot:spring-boot-starter-amqp')
  27. runtime('org.springframework.boot:spring-boot-devtools')
  28. testCompile('org.springframework.boot:spring-boot-starter-test')
  29. }