mirror of
https://github.com/tommyskeff/futur4j.git
synced 2026-01-17 23:16:01 +00:00
21 lines
344 B
Groovy
21 lines
344 B
Groovy
plugins {
|
|
id 'com.github.johnrengelman.shadow' version "8.1.1"
|
|
}
|
|
|
|
subprojects {
|
|
group = "dev.tommyjs"
|
|
version = "2.1.3"
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
tasks {
|
|
build {
|
|
dependsOn(tasks.shadowJar)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
} |