Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. plugins {
  2. id 'org.springframework.boot' version '2.1.2.RELEASE'
  3. id 'java'
  4. }
  5.  
  6.  
  7. plugins {
  8. id "io.spring.dependency-management" version "1.0.5.RELEASE"
  9. }
  10.  
  11. ext { springBootVersion = '2.0.5.RELEASE' }
  12.  
  13. group = 'com.example'
  14. version = '0.0.2-SNAPSHOT'
  15. sourceCompatibility = '1.11'
  16.  
  17. jar {
  18. archiveBaseName = 'library'
  19. version = '0.0.2-SNAPSHOT'
  20. }
  21.  
  22.  
  23. repositories {
  24. mavenCentral()
  25. }
  26.  
  27. dependencies {
  28.  
  29. implementation 'org.springframework.boot:spring-boot-starter-jersey'
  30. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  31. testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
  32. }
  33.  
  34. dependencyManagement {
  35. imports { mavenBom("org.springframework.boot:spring-boot-dependencies:${springBootVersion}") }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement