Files
j2html/j2html-website
Scott Embler 94c82398ad Maven multi module support (#222)
* Restructuring to a Maven multi-module project.

- Renamed directories to match artifact ids.
- Added parent POM.
- Added developers to parent POM.
- Added dependency management and plugin management.  No expectation that the build or release process is fully functional.
- Extracted versions into properties like other projects.

* Fixed file paths for workflow and documentation.

- Added junit to j2html-codegen module.

* Temporarily setting packaging for j2html-codegen to pom, to allow workflow to complete.

* Removed copied configuration of maven-jar-plugin from parent POM.

* Integrating code generation into the main build process.

- j2html-codegen is now supplying a Maven plugin that can read a model file and generate corresponding attribute and tag classes as part of the project build.
- j2html classes that would conflict with the generated classes have been removed.

* Targeting LTS versions only.

- JDK 9 & 10 support ended  in 2018
2022-12-26 09:51:00 -05:00
..
2022-12-26 09:51:00 -05:00
2022-12-26 09:51:00 -05:00
2022-12-26 09:51:00 -05:00
2022-12-26 09:51:00 -05:00

j2html.com source code

Running

Run this as any maven project. Website is available on http://localhost:8888/.

Deploying

In order to "deploy" the website, the static files in the j2html/docs must be updated. You can either download the files manually from your browser, or use curl:

curl "http://localhost:8888/" > index.html
curl "http://localhost:8888/download.html" > download.html
curl "http://localhost:8888/examples.html" > examples.html
curl "http://localhost:8888/news.html" > news.html
curl "http://localhost:8888/404.html" > 404.html

Changes will be deployed automatically once they have been merged.