File tree Expand file tree Collapse file tree 2 files changed +29
-4
lines changed Expand file tree Collapse file tree 2 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 1+ # ----------------------------------------------------------------------------
2+ # Copyright (c) 2025, Oracle and/or its affiliates.
3+ # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
4+ # ----------------------------------------------------------------------------
5+
6+ .PHONY : clean build docs javadocs
7+
8+ mvncmd =mvnd
9+
10+ ifeq (, $(shell which ${mvncmd}) )
11+ mvncmd =mvn
12+ endif
13+
14+
15+ build :
16+ ${mvncmd} verify
17+
18+ clean :
19+ ${mvncmd} clean
20+
21+ docs :
22+ ${mvncmd} verify -Pasciidocs -DskipTests=true
23+
24+ javadocs :
25+ ${mvncmd} clean package javadoc:aggregate -DskipTests=true -e
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <!-- Copyright (c) 2023, 2024, Oracle and/or its affiliates. -->
2+ <!-- Copyright (c) 2023, 2024, 2025 Oracle and/or its affiliates. -->
33<!-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. -->
44<project xmlns =" http://maven.apache.org/POM/4.0.0"
55 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
1818
1919 <packaging >pom</packaging >
2020
21- <name >Oracle Spring Boot Starters - General parent module </name >
21+ <name >Oracle Spring Boot Starters - Database Starters </name >
2222 <description >
2323 Global parent pom.xml to be used by Oracle Spring Boot Starters modules.
2424 </description >
9494
9595 <build-helper-maven-plugin .version>3.6.0</build-helper-maven-plugin .version>
9696 <maven-source-plugin .version>3.3.1</maven-source-plugin .version>
97- <maven-javadoc-plugin .version>3.7.0 </maven-javadoc-plugin .version>
97+ <maven-javadoc-plugin .version>3.11.2 </maven-javadoc-plugin .version>
9898 <maven-jar-plugin .version>3.4.1</maven-jar-plugin .version>
9999
100100 <!-- Distribution management -->
349349 <author >true</author >
350350 <header >${project.name} </header >
351351 <reportOutputDirectory >${project.build.directory} /site/${project.version} /apidocs</reportOutputDirectory >
352- <excludePackageNames >com.oracle.cloud .spring.sample.* </excludePackageNames >
352+ <excludePackageNames >com.oracle.database .spring.sample:com.oracle.database.spring.*:com.oracle.spring.json.duality.annotation:com.oracle.spring.json.jsonb </excludePackageNames >
353353 </configuration >
354354 <executions >
355355 <execution >
You can’t perform that action at this time.
0 commit comments