sync with jwo
This commit is contained in:
22
build.gradle
22
build.gradle
@@ -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")
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user