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.
26 lines
487 B
26 lines
487 B
apply plugin: 'java'
|
|
|
|
sourceCompatibility = 11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
subprojects.each { subproject ->
|
|
evaluationDependsOn(subproject.path)
|
|
}
|
|
|
|
dependencies {
|
|
implementation group: 'com.github.spullara.cli-parser', name: 'cli-parser', version: '1.1.5'
|
|
}
|
|
|
|
jar {
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
from {
|
|
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
|
|
|
|
from subprojects.sourceSets.main.output
|
|
}
|
|
|