build.gradle 405 B

12345678910111213141516171819
  1. plugins {
  2. id("java-library")
  3. }
  4. group = "com.incubator.game"
  5. version = "1.0-SNAPSHOT"
  6. dependencies {
  7. testImplementation(platform("org.junit:junit-bom:5.10.0"))
  8. testImplementation("org.junit.jupiter:junit-jupiter")
  9. api project(path: ':incubator-core')
  10. }
  11. configurations.configureEach {
  12. exclude group: 'ch.qos.logback', module: 'logback-classic'
  13. }
  14. build.dependsOn(copyAllDependencies)