|
73 | 73 | } |
74 | 74 | </style> |
75 | 75 | </head> |
76 | | - <body style="overflow-x: hidden"> |
| 76 | + <body style="overflow-x: hidden;"> |
77 | 77 | <div style="width: 25%; position: fixed; top: 0; left: 0; bottom: 0; background-color: rgb(208,209,230)"> |
78 | | - <div style="height: 2em; padding-right: 0em; margin-top: 1em; margin-left: 15%; border-bottom: solid rgb(2,56,88) 1px;"> |
79 | | - <div style="margin-left: 0em; font-family: Calibri, sans-serif; font-size: 1.25em; font-weight: bold; color: rgb(2,56,88); min-width: 200em;">JSON Web Signature for Java</div> |
| 78 | + <div style="height: 4em; padding-right: 0em; margin-top: 1em; margin-left: 15%; border-bottom: solid rgb(2,56,88) 1px;"> |
| 79 | + <div style="margin-left: 0em; font-family: Calibri, sans-serif; font-size: 1.25em; font-weight: bold; color: rgb(2,56,88); display: flex; align-items: flex-end; |
| 80 | + height: 100%; justify-content: flex-start;"> |
| 81 | + <span style="margin-bottom: 0.25em">JSON Web Signature for Java</span> |
| 82 | + </div> |
80 | 83 | </div> |
81 | 84 | <div style="height: 100%;"> |
82 | 85 | <nav style="margin-top: 1em; margin-left: 15%; position: relative; height: 90%; overflow-y: auto"> |
|
156 | 159 | <p class="menu_item"> |
157 | 160 | <a href="#download" class="menu_item">Download</a> |
158 | 161 | </p> |
| 162 | + <ul class="menu_item"> |
| 163 | + <li style="margin-left: -2em; font-weight: bold"> |
| 164 | + <a href="#maven" class="sub_menu_item_1">Maven</a> |
| 165 | + </li> |
| 166 | + <li style="margin-left: -2em; font-weight: bold"> |
| 167 | + <a href="#direct" class="sub_menu_item_1">Direct</a> |
| 168 | + </li> |
| 169 | + </ul> |
159 | 170 | <p class="menu_item"> |
160 | 171 | <a href="" class="menu_item">JavaDocs</a> |
161 | 172 | </p> |
|
166 | 177 | </div> |
167 | 178 | </div> |
168 | 179 | <div style="margin-left: 25%; background-color: rgb(236,231,242); width: 75%; position: absolute; top: 0; left: 0; border-left: solid 1px rgb(166,189,219);"> |
169 | | - <div style="height: 2em; margin-top: 1em; width: 80%; text-align: right; border-bottom: solid rgb(2,56,88) 1px"> |
170 | | - <div style="font-family: Calibri, sans-serif; font-size: 1em; font-style: italic; margin-top: 0em; color: rgb(2,56,88)">Last updated: 1-June-2025</div> |
| 180 | + <div style="height: 4em; margin-top: 1em; width: 80%; text-align: right; border-bottom: solid rgb(2,56,88) 1px"> |
| 181 | + <div style="font-family: Calibri, sans-serif; font-size: 1em; font-style: italic; margin-top: 0em; color: rgb(2,56,88); display: flex; align-items: flex-end; |
| 182 | + height: 100%; justify-content: flex-end;"> |
| 183 | + <span style="margin-bottom: 0.25em">Last updated: 3-June-2025</span> |
| 184 | + </div> |
171 | 185 | </div> |
172 | 186 | <div style="margin-left: 1em; width: 80%;"> |
173 | 187 | <p id="abstract" class="head_line_1"> |
|
1010 | 1024 | <p id="download" class="head_line_1"> |
1011 | 1025 | Download |
1012 | 1026 | </p> |
1013 | | - <p class="section"> |
1014 | | - Coming soon ... |
1015 | | - </p> |
| 1027 | + <p id="maven" class="head_line_2"> |
| 1028 | + Maven Coordinates |
| 1029 | + </p> |
| 1030 | + <p class="section"> |
| 1031 | + This library has been deployed to Maven Central. The latest version can be referenced by: |
| 1032 | + </p> |
| 1033 | + <p class="code"><dependency> |
| 1034 | + <groupId>de.christofreichardt</groupId> |
| 1035 | + <artifactId>json-web-signature</artifactId> |
| 1036 | + <version>1.0.0-rc1</version> |
| 1037 | +</dependency></p> |
| 1038 | + <p class="section"> |
| 1039 | + You will additionally need an implementation for the Jakarta JSON Processing API at runtime, e.g. <a class="content" href="https://github.com/eclipse-ee4j/parsson">Eclipse Parsson</a>: |
| 1040 | + </p> |
| 1041 | + <p class="code"><dependency> |
| 1042 | + <groupId>org.eclipse.parsson</groupId> |
| 1043 | + <artifactId>jakarta.json</artifactId> |
| 1044 | + <version>1.1.7</version> |
| 1045 | + <scope>runtime</scope> |
| 1046 | +</dependency></p> |
| 1047 | + <p class="section"> |
| 1048 | + An alternative implementation for the Jakarta JSON Processing API would be <a class="content" href="https://leadpony.github.io/joy/">Joy</a> |
| 1049 | + </p> |
| 1050 | + <p class="code"><dependency> |
| 1051 | + <groupId>org.leadpony.joy</groupId> |
| 1052 | + <artifactId>joy-classic</artifactId> |
| 1053 | + <version>2.1.0</version> |
| 1054 | + <scope>runtime</scope> |
| 1055 | +</dependency></p> |
| 1056 | + <p id="direct" class="head_line_2"> |
| 1057 | + Direct Download |
| 1058 | + </p> |
| 1059 | + <table style="font-family: Consolas, monospace; font-size: 0.8em; color: rgb(2,56,88); width: 100%"> |
| 1060 | + <thead style="background-color: rgb(158,188,218);"> |
| 1061 | + <tr> |
| 1062 | + <th>Artifact</th> |
| 1063 | + <th>JAR</th> |
| 1064 | + <th>Build Time</th> |
| 1065 | + <th>SHA-256 Checksum</th> |
| 1066 | + </tr> |
| 1067 | + </thead> |
| 1068 | + <tbody style="background-color: rgb(253,224,221); text-align: center"> |
| 1069 | + <tr> |
| 1070 | + <td>json-web-signature-1.0.0-rc1</td> |
| 1071 | + <td> |
| 1072 | + <a class="content" href="https://www.dropbox.com/scl/fi/vkwehe9gf5vcas3zxsm4v/json-web-signature-1.0.0-rc1.jar?rlkey=k4cynpej3usx81ydbofuw7dmc&st=73zcu0y9&dl=1"> |
| 1073 | + json-web-signature-1.0.0-rc1.jar |
| 1074 | + </a> |
| 1075 | + </td> |
| 1076 | + <td>2025年06月02日 15:39</td> |
| 1077 | + <td>baa19b91ee24e238dc9f61d66b027cdec2f2039f351fdbf8ff0339de623f57f3</td> |
| 1078 | + </tr> |
| 1079 | + </tbody> |
| 1080 | + </table> |
1016 | 1081 | </div> |
1017 | 1082 | <div id="imprint" style="margin-left: 0em; height: 6em; margin-top: 1em; width: 80%; text-align: center; border-top: solid rgb(2,56,88) 1px"> |
1018 | 1083 | <img style="margin-top: 1em" src="./images/imprint.gif" alt="imprint"/> |
|
0 commit comments