12345678910111213141516171819 |
- plugins {
- id("java-library")
- }
- group = "com.incubator.game"
- version = "1.0-SNAPSHOT"
- dependencies {
- testImplementation(platform("org.junit:junit-bom:5.10.0"))
- testImplementation("org.junit.jupiter:junit-jupiter")
- api project(path: ':incubator-core')
- }
- configurations.configureEach {
- exclude group: 'ch.qos.logback', module: 'logback-classic'
- }
- build.dependsOn(copyAllDependencies)
|