Advertisement
SosenWiosen

Untitled

Jan 20th, 2023
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. plugins {
  2. id 'java'
  3. id 'org.springframework.boot' version '3.0.1'
  4. id 'io.spring.dependency-management' version '1.1.0'
  5. }
  6.  
  7. group = 'com.example'
  8. version = '0.0.1-SNAPSHOT'
  9. sourceCompatibility = '19'
  10.  
  11. configurations {
  12. compileOnly {
  13. extendsFrom annotationProcessor
  14. }
  15. }
  16.  
  17. repositories {
  18. mavenCentral()
  19. }
  20.  
  21. dependencies {
  22.  
  23. implementation 'org.springframework.boot:spring-boot-starter-data-rest'
  24. implementation 'org.springframework.boot:spring-boot-starter-groovy-templates'
  25. implementation 'org.springframework.boot:spring-boot-starter-web'
  26. implementation 'org.springframework.boot:spring-boot-starter-websocket'
  27. implementation 'javax.validation:validation-api:2.0.1.Final'
  28. implementation 'org.postgresql:postgresql:42.5.1'
  29. implementation 'io.sentry:sentry-spring-boot-starter:6.12.1'
  30. implementation 'io.sentry:sentry-spring-boot-starter-jakarta:6.12.1'
  31. implementation 'io.sentry:sentry-logback:6.12.1'
  32. implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
  33. implementation 'org.springdoc:springdoc-openapi-starter-common:2.0.2'
  34.  
  35.  
  36.  
  37. implementation 'org.springframework.boot:spring-boot-starter-security'
  38. implementation 'javax.servlet:javax.servlet-api:4.0.1'
  39. implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  40. implementation 'org.springframework.restdocs:spring-restdocs-mockmvc:2.0.6.RELEASE'
  41. implementation 'org.hibernate.validator:hibernate-validator:8.0.0.Final'
  42.  
  43. compileOnly 'org.projectlombok:lombok'
  44. developmentOnly 'org.springframework.boot:spring-boot-devtools'
  45. annotationProcessor 'org.projectlombok:lombok'
  46. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  47. }
  48.  
  49. tasks.named('test') {
  50. useJUnitPlatform()
  51. }
  52. apply plugin: 'java'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement