File tree 2 files changed +29
-4
lines changed
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 1
1
<?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. -->
3
3
<!-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. -->
4
4
<project xmlns =" http://maven.apache.org/POM/4.0.0"
5
5
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
18
18
19
19
<packaging >pom</packaging >
20
20
21
- <name >Oracle Spring Boot Starters - General parent module </name >
21
+ <name >Oracle Spring Boot Starters - Database Starters </name >
22
22
<description >
23
23
Global parent pom.xml to be used by Oracle Spring Boot Starters modules.
24
24
</description >
94
94
95
95
<build-helper-maven-plugin .version>3.6.0</build-helper-maven-plugin .version>
96
96
<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>
98
98
<maven-jar-plugin .version>3.4.1</maven-jar-plugin .version>
99
99
100
100
<!-- Distribution management -->
349
349
<author >true</author >
350
350
<header >${project.name} </header >
351
351
<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 >
353
353
</configuration >
354
354
<executions >
355
355
<execution >
You can’t perform that action at this time.
0 commit comments