Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions marklogic-client-api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010-2025 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
* Copyright (c) 2010-2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
*/

plugins {
Expand Down Expand Up @@ -118,6 +118,13 @@ tasks.register("runXmlSmokeTests", Test) {
include "com/marklogic/client/test/JAXBHandleTest.class"
}

processResources {
from(rootProject.file("sbom.spdx.json")) {
into "META-INF/sbom"
rename { "marklogic-client-api-${project.version}.spdx.json" }
}
}

// Publishing setup - see https://docs.gradle.org/current/userguide/publishing_setup.html .
java {
withJavadocJar()
Expand All @@ -129,7 +136,7 @@ javadoc {
options.overview = "src/main/javadoc/overview.html"
options.windowTitle = "MarkLogic Java Client API $rootProject.version"
options.docTitle = "MarkLogic Java Client API $rootProject.version"
options.bottom = "Copyright (c) 2010-2025 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved."
options.bottom = "Copyright (c) 2010-2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved."
options.use = true
exclude([
'**/impl/**', '**/jaxb/**', '**/test/**'
Expand All @@ -147,6 +154,9 @@ publishing {
publications {
mainJava(MavenPublication) {
from components.java
artifact(rootProject.file("sbom.spdx.json")) {
extension = "spdx.json"
}
pom {
name = "${project.group}:${project.name}"
description = "The MarkLogic Java Client API"
Expand Down
Loading