63 lines
1.7 KiB
Groovy
63 lines
1.7 KiB
Groovy
/**
|
|
Copyright (c) 2024 John Ahlroos
|
|
|
|
Creative Commons Attribution-NoDerivatives 4.0 International Public License
|
|
|
|
By exercising the Licensed Rights (defined below), You accept and agree
|
|
to be bound by the terms and conditions of this Creative Commons
|
|
Attribution-NoDerivatives 4.0 International Public License ("Public
|
|
License"). To the extent this Public License may be interpreted as a
|
|
contract, You are granted the Licensed Rights in consideration of Your
|
|
acceptance of these terms and conditions, and the Licensor grants You
|
|
such rights in consideration of benefits the Licensor receives from
|
|
making the Licensed Material available under these terms and
|
|
conditions.
|
|
|
|
Refer to LICENSE file or https://creativecommons.org/licenses/by-nd/4.0 for full license.
|
|
*/
|
|
|
|
plugins {
|
|
id 'java-library'
|
|
id 'signing'
|
|
id 'maven-publish'
|
|
}
|
|
|
|
group = 'com.devsoap'
|
|
version = findProperty('BUILD_VERSION') ?: 'latest'
|
|
|
|
java {
|
|
withJavadocJar()
|
|
withSourcesJar()
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
targetCompatibility = JavaVersion.VERSION_21
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://code.devsoap.com/api/packages/john/maven" }
|
|
}
|
|
|
|
dependencies {
|
|
|
|
api 'jakarta.json.bind:jakarta.json.bind-api:3.0.1'
|
|
api 'jakarta.json:jakarta.json-api:2.1.3'
|
|
|
|
implementation 'org.assertj:assertj-core:3.26.3'
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
testImplementation 'org.eclipse:yasson:3.0.4'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
}
|
|
|
|
javadoc {
|
|
options.addBooleanOption('html5', true)
|
|
}
|
|
|
|
apply from: 'publish.gradle' |