-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yml
76 lines (72 loc) · 2.21 KB
/
mkdocs.yml
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
site_name: Migrating to Jakarta EE 10
repo_url: https://github.com/hantsy/jakartaee10-sandbox
repo_name: hantsy/jakartaee10-sandbox
theme:
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: pink
accent: pink
toggle:
icon: material/toggle-switch
name: Switch to light mode
name: material
features:
- search.suggest
- navigation.expand
- navigation.indexes
# - toc.integrate
icon:
repo: fontawesome/brands/git-alt
copyright: Copyright ©2022 Hantsy
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/hantsy
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/hantsy
- icon: fontawesome/brands/medium
link: https://medium.com/@hantsy
- icon: fontawesome/brands/github
link: https://github.com/hantsy
markdown_extensions:
- meta
- toc:
toc_depth: 3
permalink: true
plugins:
- search
- git-revision-date
nav:
- Preface: index.md
- Persistence:
- jpa/index.md
- "What's New in Jakarta Persistence 3.1": jpa/new.md
- "Example: Hibernate 6.1": jpa/hibernate.md
- "Example: JPA and Jakarta EE Runtimes": jpa/jakartaee.md
- REST:
- rest/index.md
- "What's New in Jakarta REST 3.1": rest/new.md
- "Java SE Bootstrap API": rest/se-bootstrap.md
- "Support for MultiPart media type": rest/multipart.md
- "Better alignment with JSONB": rest/jsonb.md
- "Better alignment with CDI": rest/cdi-inject.md
- Concurrency: concurrency.md
- Security:
- security/index.md
- "What's New in Jakarta Security 3.1": security/new.md
- "Example Project": security/example.md
- "OIDC with Keycloak": security/kc.md
- "OIDC with Auth0": security/auth0.md
- "OIDC with Okta": security/okta.md
- "Summary": security/summary.md
- Faces:
- faces/index.md
- "What's new in Faces 4.0": faces/new.md
- "Clean Up Deprecated Staff": faces/cleanup.md
- "New Features and Improvements": faces/faces.md