Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. plugins {
  2. id 'org.asciidoctor.convert' version '1.5.3'
  3. id 'org.springframework.boot' version '2.1.3.RELEASE'
  4. id 'java'
  5. }
  6.  
  7. apply plugin: 'io.spring.dependency-management'
  8.  
  9. group = 'com.example'
  10. version = '0.0.1-SNAPSHOT'
  11. sourceCompatibility = '1.8'
  12.  
  13. configurations {
  14. compileOnly {
  15. extendsFrom annotationProcessor
  16. }
  17. }
  18.  
  19. repositories {
  20. mavenCentral()
  21. }
  22.  
  23. dependencies {
  24. implementation 'org.springframework.boot:spring-boot-starter-cache'
  25. implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  26. implementation 'org.springframework.boot:spring-boot-starter-jdbc'
  27. implementation 'org.springframework.boot:spring-boot-starter-security'
  28. implementation 'org.springframework.boot:spring-boot-starter-validation'
  29. implementation 'org.springframework.boot:spring-boot-starter-web'
  30. implementation 'org.springframework.boot:spring-boot-starter-web-services'
  31. implementation 'org.springframework.retry:spring-retry'
  32. implementation 'org.springframework.session:spring-session-jdbc'
  33. compileOnly 'org.projectlombok:lombok'
  34. runtimeOnly 'org.springframework.boot:spring-boot-devtools'
  35. runtimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
  36. runtimeOnly 'mysql:mysql-connector-java'
  37. annotationProcessor 'org.projectlombok:lombok'
  38. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  39. testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
  40. testImplementation 'org.springframework.security:spring-security-test'
  41. }
  42.  
  43. test {
  44. outputs.dir snippetsDir
  45. }
  46.  
  47. asciidoctor {
  48. inputs.dir snippetsDir
  49. dependsOn test
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement