You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
783 B

3 years ago
3 years ago
3 years ago
  1. plugins {
  2. id 'java'
  3. }
  4. group 'fh.fd.ci'
  5. version '1.0-SNAPSHOT'
  6. repositories {
  7. mavenCentral()
  8. jcenter()
  9. }
  10. subprojects {
  11. apply plugin: 'java'
  12. sourceCompatibility = JavaVersion.VERSION_11
  13. repositories {
  14. mavenCentral()
  15. jcenter()
  16. }
  17. dependencies {
  18. compileOnly 'org.projectlombok:lombok:1.18.16'
  19. annotationProcessor 'org.projectlombok:lombok:1.18.16'
  20. testImplementation('org.junit.jupiter:junit-jupiter:5.7.0')
  21. testImplementation('org.mockito:mockito-core:3.7.0')
  22. testImplementation('org.hamcrest:hamcrest-core:2.2')
  23. testCompileOnly 'org.projectlombok:lombok:1.18.16'
  24. testAnnotationProcessor 'org.projectlombok:lombok:1.18.16'
  25. }
  26. test {
  27. useJUnitPlatform()
  28. }
  29. }