Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

47 Zeilen
1.6 KiB

  1. plugins {
  2. id 'org.springframework.boot' version '2.7.0'
  3. id 'io.spring.dependency-management' version '1.0.11.RELEASE'
  4. id 'java'
  5. }
  6. group = 'com.ffii'
  7. version = '0.0.1-SNAPSHOT'
  8. sourceCompatibility = '11'
  9. repositories {
  10. mavenCentral()
  11. maven {
  12. url 'https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts/'
  13. }
  14. }
  15. dependencies {
  16. implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  17. implementation 'org.springframework.boot:spring-boot-starter-security'
  18. implementation 'org.springframework.boot:spring-boot-starter-validation'
  19. implementation 'org.springframework.boot:spring-boot-starter-web'
  20. implementation 'org.springframework.boot:spring-boot-starter-mail'
  21. implementation 'org.springframework.boot:spring-boot-starter-freemarker'
  22. implementation 'org.liquibase:liquibase-core'
  23. runtimeOnly 'mysql:mysql-connector-java'
  24. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  25. testImplementation 'org.springframework.security:spring-security-test'
  26. def apachePoi = '5.2.2'
  27. implementation group: 'org.apache.poi', name: 'poi', version: apachePoi
  28. implementation group: 'org.apache.poi', name: 'poi-ooxml', version: apachePoi
  29. implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
  30. implementation group: 'org.apache.commons', name: 'commons-text', version: '1.9'
  31. implementation group: 'org.apache.tika', name: 'tika-core', version: '2.4.1'
  32. implementation 'net.sf.jasperreports:jasperreports:6.19.1'
  33. implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.6.9'
  34. implementation fileTree(dir: 'libs', include: '*.jar');
  35. }
  36. tasks.named('test') {
  37. useJUnitPlatform()
  38. }