You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After setting up completion, restart your shell or source the configuration file.
150
+
120
151
## Relationship to prior work
121
152
122
153
The contents of this repository is based on work from the [Metaschema Java repository](https://github.com/usnistgov/metaschema-java/) maintained by the National Institute of Standards and Technology (NIST), the [contents of which have been dedicated in the worldwide public domain](https://github.com/usnistgov/metaschema-java/blob/1a496e4bcf905add6b00a77a762ed3cc31bf77e6/LICENSE.md) using the [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/) public domain dedication. This repository builds on this prior work, maintaining the [CCO license](https://github.com/metaschema-framework/metaschema-java/blob/main/LICENSE.md) on any new works in this repository.
Copy file name to clipboardExpand all lines: src/site/markdown/building.md.vm
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This guide explains how to build the Metaschema Java project from source code.
5
5
## Prerequisites
6
6
7
7
| Requirement | Minimum Version | Notes |
8
-
|-------------|-----------------|-------|
8
+
|:------------|:----------------|:------|
9
9
| Java JDK | 17 | Required for building (output JARs are JDK 11 compatible) |
10
10
| Maven | 3.9.0 | Required for building |
11
11
| Git | 2.0 | Required for cloning |
@@ -146,6 +146,16 @@ export MAVEN_OPTS="-Xmx2g"
146
146
mvn install
147
147
```
148
148
149
+
## Building the Site
150
+
151
+
To build the project documentation site:
152
+
153
+
```bash
154
+
mvn site
155
+
```
156
+
157
+
The generated site appears in `target/site/`. For multi-module builds, each module's site is in its respective `target/site/` directory.
158
+
149
159
## Contributing
150
160
151
161
For contribution guidelines, including code style requirements and the pull request process, see [CONTRIBUTING.md](${project.scm.url}/blob/develop/CONTRIBUTING.md).
0 commit comments