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. test {
  18. useJUnitPlatform()
  19. }
  20. dependencies {
  21. compileOnly 'org.projectlombok:lombok:1.18.16'
  22. annotationProcessor 'org.projectlombok:lombok:1.18.16'
  23. testCompileOnly 'org.projectlombok:lombok:1.18.16'
  24. testAnnotationProcessor 'org.projectlombok:lombok:1.18.16'
  25. testImplementation('org.junit.jupiter:junit-jupiter:5.7.0')
  26. testImplementation('org.mockito:mockito-core:3.7.0')
  27. testImplementation('org.hamcrest:hamcrest-core:2.2')
  28. }
  29. }