-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgenerate-docs.sh
82 lines (71 loc) · 3.06 KB
/
generate-docs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env bash
#
# Copyright (c) 2024 Moataz Abdelnasser
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
JAVADOC_SITE_PATH=api/latest
# Fail the script if one command fails.
set -e
# Ensure MkDocs & used theme are installed.
python -m venv venv
chmod +x ./venv/bin/activate && ./venv/bin/activate
python -m pip install mkdocs-material
# Make the necessary files locatable by MkDocs.
mkdir -p docs/adapters
cp -f README.md docs/index.md
cp -f methanol-gson/README.md docs/adapters/gson.md
cp -f methanol-jackson/README.md docs/adapters/jackson.md
cp -f methanol-jackson-flux/README.md docs/adapters/jackson_flux.md
cp -f methanol-jaxb/README.md docs/adapters/jaxb.md
cp -f methanol-jaxb-jakarta/README.md docs/adapters/jaxb_jakarta.md
cp -f methanol-moshi/README.md docs/adapters/moshi.md
cp -f methanol-protobuf/README.md docs/adapters/protobuf.md
cp -f methanol-kotlin/README.md docs/kotlin.md
cp -f methanol-redis/README.md docs/redis.md
cp -f methanol-brotli/README.md docs/brotli.md
cp -f methanol-benchmarks/README.md docs/benchmarks.md
cp -f CHANGELOG.md docs/CHANGELOG.md
cp -f CONTRIBUTING.md docs/CONTRIBUTING.md
# Clean our site directory.
rm -rf site
# Build website.
python -m mkdocs build
# Generate aggregate Javadoc for Java projects.
./gradlew aggregateJavadoc
# Generate docs for kotlin projects.
./gradlew dokkaHtmlMultiModule
# Merge Java & Kotlin documentation into the site directory. This seems to work decently as long as
# we use consistent module & output directory naming (done by the build scripts) and we exclude
# conflicting/inappropriate files from the Kotlin documentation.
mkdir -p site/$JAVADOC_SITE_PATH
echo "Copying Javadoc files"
rsync -rv build/docs/aggregateJavadoc/ site/$JAVADOC_SITE_PATH
echo "Copying KDoc files"
rsync -rv build/dokka/htmlMultiModule/ site/$JAVADOC_SITE_PATH --exclude="/index.html" \
--exclude="/package-list"
# Remove copied files, which is desirable when the script is run locally.
rm -r docs/adapters
rm docs/index.md
rm docs/kotlin.md
rm docs/redis.md
rm docs/brotli.md
rm docs/benchmarks.md
rm docs/CHANGELOG.md
rm docs/CONTRIBUTING.md