better Mono wrapper and get groovy with Gradle

This commit is contained in:
WhatCats
2024-03-29 18:53:43 +01:00
parent 8d1ed04b1d
commit 7763f1e40b
15 changed files with 78 additions and 248 deletions

28
build.gradle Normal file
View 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'
}
}
}