Skip to content

Commit b4b106b

Browse files
authored
Make 'a href' links bold in javadoc (#3818)
1 parent 1b33bdc commit b4b106b

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License").
5+
* You may not use this file except in compliance with the License.
6+
* A copy of the License is located at
7+
*
8+
* http://aws.amazon.com/apache2.0
9+
*
10+
* or in the "license" file accompanying this file. This file is distributed
11+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
* express or implied. See the License for the specific language governing
13+
* permissions and limitations under the License.
14+
*/
15+
16+
a:link {
17+
font-weight: bold;
18+
}

pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@
172172

173173
<skip.unit.tests>${skipTests}</skip.unit.tests>
174174
<integTestSourceDirectory>${project.basedir}/src/it/java</integTestSourceDirectory>
175+
<javadoc.resourcesDir>${session.executionRootDirectory}</javadoc.resourcesDir>
175176
</properties>
176177

177178
<dependencyManagement>
@@ -1016,6 +1017,11 @@
10161017
<doctitle>AWS SDK for Java API Reference - ${awsjavasdk.version}</doctitle>
10171018
<packagesheader>AWS SDK for Java</packagesheader>
10181019
<excludePackageNames>:*.codegen:software.amazon.awssdk.services.protocol*</excludePackageNames>
1020+
<docfilessubdirs>true</docfilessubdirs>
1021+
<javadocDirectory>${javadoc.resourcesDir}/javadoc-resources</javadocDirectory>
1022+
<addStylesheets>
1023+
<addStylesheet>aws-sdk-java-v2-javadoc.css</addStylesheet>
1024+
</addStylesheets>
10191025
<groups>
10201026
<group>
10211027
<title>Greengrass</title>

0 commit comments

Comments
 (0)