Skip to content

Database starter javadocs #202

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2025
Merged
Show file tree
Hide file tree
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
25 changes: 25 additions & 0 deletions database/starters/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# ----------------------------------------------------------------------------
# Copyright (c) 2025, Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
# ----------------------------------------------------------------------------

.PHONY: clean build docs javadocs

mvncmd=mvnd

ifeq (, $(shell which ${mvncmd}))
mvncmd=mvn
endif


build:
${mvncmd} verify

clean:
${mvncmd} clean

docs:
${mvncmd} verify -Pasciidocs -DskipTests=true

javadocs:
${mvncmd} clean package javadoc:aggregate -DskipTests=true -e
8 changes: 4 additions & 4 deletions database/starters/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2023, 2024, Oracle and/or its affiliates. -->
<!-- Copyright (c) 2023, 2024, 2025 Oracle and/or its affiliates. -->
<!-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Expand All @@ -18,7 +18,7 @@

<packaging>pom</packaging>

<name>Oracle Spring Boot Starters - General parent module</name>
<name>Oracle Spring Boot Starters - Database Starters</name>
<description>
Global parent pom.xml to be used by Oracle Spring Boot Starters modules.
</description>
Expand Down Expand Up @@ -94,7 +94,7 @@

<build-helper-maven-plugin.version>3.6.0</build-helper-maven-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.7.0</maven-javadoc-plugin.version>
<maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
<maven-jar-plugin.version>3.4.1</maven-jar-plugin.version>

<!-- Distribution management -->
Expand Down Expand Up @@ -349,7 +349,7 @@
<author>true</author>
<header>${project.name}</header>
<reportOutputDirectory>${project.build.directory}/site/${project.version}/apidocs</reportOutputDirectory>
<excludePackageNames>com.oracle.cloud.spring.sample.*</excludePackageNames>
<excludePackageNames>com.oracle.database.spring.sample:com.oracle.database.spring.*:com.oracle.spring.json.duality.annotation:com.oracle.spring.json.jsonb</excludePackageNames>
</configuration>
<executions>
<execution>
Expand Down
Loading