Skip to content

Commit 98f2702

Browse files
authored
Database starter javadocs (#202)
Signed-off-by: Andy Tael <andy.tael@yahoo.com>
1 parent bd8ec6d commit 98f2702

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

database/starters/Makefile

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

database/starters/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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"
@@ -18,7 +18,7 @@
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>
@@ -94,7 +94,7 @@
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 -->
@@ -349,7 +349,7 @@
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>

0 commit comments

Comments
 (0)