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.

33 lines
628 B

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. dependencies {
  11. testCompile group: 'junit', name: 'junit', version: '4.12'
  12. }
  13. subprojects {
  14. apply plugin: 'java'
  15. sourceCompatibility = JavaVersion.VERSION_11
  16. repositories {
  17. mavenCentral()
  18. jcenter()
  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. }
  26. }