build.gradle 305 B

1234567891011121314151617
  1. //leave me here
  2. allprojects { // 'allprojects' is here to replicate the 'apply plugin:java' to projectB and projectC
  3. apply plugin: 'java'
  4. }
  5. repositories {
  6. mavenLocal()
  7. }
  8. dependencies {
  9. implementation project(':Server')
  10. implementation 'junit:junit:4.12'
  11. }
  12. test {
  13. useJUnitPlatform()
  14. }