sync with jwo

This commit is contained in:
2021-08-14 09:24:53 +02:00
parent 605e1ad644
commit 47c33036d1
12 changed files with 29 additions and 97 deletions

View File

@@ -1,12 +1,19 @@
plugins {
id 'maven-publish'
id 'net.woggioni.gradle.lombok' apply false
}
allprojects {
apply plugin: 'java-library'
apply plugin: 'net.woggioni.gradle.lombok'
group = "net.woggioni"
version = getProperty('version.wson')
lombok {
version = getProperty('version.lombok')
}
repositories {
maven {
url = "https://woggioni.net/mvn/"
@@ -47,21 +54,14 @@ dependencies {
testImplementation group: "com.fasterxml.jackson.core", name: "jackson-databind", version: getProperty('version.jackson')
}
compileJava {
options.release = 8
}
jar {
manifest{
attributes([
"Automatic-Module-Name": "net.woggioni.wson"
])
}
java {
withJavadocJar()
withSourcesJar()
}
wrapper {
distributionType = Wrapper.DistributionType.BIN
gradleVersion = "7.0.2"
gradleVersion = getProperty("version.gradle")
}