From 9643b8646a3e80e631292e766be10b90779e779d Mon Sep 17 00:00:00 2001 From: Olivier Lepage-Applin Date: Tue, 7 Mar 2023 13:50:28 -0500 Subject: [PATCH] Make 'a href' links bold in javadoc --- javadoc-resources/aws-sdk-java-v2-javadoc.css | 18 ++++++++++++++++++ pom.xml | 6 ++++++ 2 files changed, 24 insertions(+) create mode 100644 javadoc-resources/aws-sdk-java-v2-javadoc.css diff --git a/javadoc-resources/aws-sdk-java-v2-javadoc.css b/javadoc-resources/aws-sdk-java-v2-javadoc.css new file mode 100644 index 000000000000..8bff1757454e --- /dev/null +++ b/javadoc-resources/aws-sdk-java-v2-javadoc.css @@ -0,0 +1,18 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +a:link { + font-weight: bold; +} diff --git a/pom.xml b/pom.xml index e1b3004d82dc..9e7a879f241e 100644 --- a/pom.xml +++ b/pom.xml @@ -172,6 +172,7 @@ ${skipTests} ${project.basedir}/src/it/java + ${session.executionRootDirectory} @@ -1016,6 +1017,11 @@ AWS SDK for Java API Reference - ${awsjavasdk.version} AWS SDK for Java :*.codegen:software.amazon.awssdk.services.protocol* + true + ${javadoc.resourcesDir}/javadoc-resources + + aws-sdk-java-v2-javadoc.css + Greengrass