mirror of
https://github.com/tommyskeff/futur4j.git
synced 2026-01-17 23:16:01 +00:00
better Mono wrapper and get groovy with Gradle
This commit is contained in:
28
build.gradle
Normal file
28
build.gradle
Normal file
@@ -0,0 +1,28 @@
|
||||
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()
|
||||
}
|
||||
|
||||
test {
|
||||
useJUnitPlatform()
|
||||
testLogging {
|
||||
exceptionFormat = 'full'
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user