Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions documentation/src/static/css/bootstrap.min.css

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions documentation/src/static/css/flatly.bootstrap.min.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions documentation/src/static/css/font-awesome.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions documentation/src/static/css/prettify.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
2,671 changes: 2,671 additions & 0 deletions documentation/src/static/fonts/fontawesome-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
7 changes: 7 additions & 0 deletions documentation/src/static/js/bootstrap.min.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions documentation/src/static/js/jquery.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions documentation/src/static/js/prettify.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 4 additions & 8 deletions documentation/src/template/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,17 @@

<div id="footer">
<div class="container">
Copyright &copy; 1999-2024 The Apache Software Foundation, Licensed under the Apache License, Version 2.0.
Copyright &copy; 1999-2025 The Apache Software Foundation, Licensed under the Apache License, Version 2.0.
Apache Geronimo, Geronimo, Apache, the Apache feather logo, and the Apache Geronimo project logo are trademarks
of
The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their
respective owners.
</div>
</div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.min.js"
integrity="sha384-o+RDsa0aLu++PJvFqy8fFScvbHFLtbvScb8AjopnFD+iEQ7wo/CG0xlczd+2O/em"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"
integrity="sha256-SHXnnZAbgSEf+OBhDLR7I2mx9vNZAIzPeCGhxRV+VQw=" crossorigin="anonymous"></script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/prettify.min.js"</script>
<script src="js/arthur.js"></script>
</body>
</html>
15 changes: 3 additions & 12 deletions documentation/src/template/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,11 @@
<meta name="msapplication-TileImage" content="favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#2C3E50">

<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.css"
integrity="sha256-IPtNBA1od/cGBfXTxYDxuT5+Y2BKy14o6j0FaIXDmYk=" crossorigin="anonymous"/>
<link href="https://stackpath.bootstrapcdn.com/bootswatch/4.3.1/flatly/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T5jhQKMh96HMkXwqVMSjF3CmLcL1nT9//tCqu9By5XSdj7CwR0r+F3LTzUdfkkQf" crossorigin="anonymous">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/flatly.bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/arthur.css"/>

<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"
integrity="sha256-3Jy/GbSLrg0o9y5Z5n1uw0qxZECH7C6OQpVBgNFYa0g=" crossorigin="anonymous"></script>
<![endif]-->
</head>
<body cz-shortcut-listen="true">

Expand Down
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,21 @@
<exclude>.site-content/**</exclude>
<exclude>.m2/**</exclude>
<exclude>**/*.iml</exclude>
<!-- JS files -->
<exclude>**/js/jquery.min.js</exclude>
<exclude>**/js/bootstrap.min.js</exclude>
<exclude>**/js/prettify.min.js</exclude>
<!-- CSS files -->
<exclude>**/css/bootstrap.min.css</exclude>
<exclude>**/css/font-awesome.min.css</exclude>
<exclude>**/css/prettify.min.css</exclude>
<exclude>**/css/flatly.bootstrap.min.css</exclude>
<!-- Font files -->
<exclude>**/fonts/fontawesome-webfont.eot</exclude>
<exclude>**/fonts/fontawesome-webfont.woff2</exclude>
<exclude>**/fonts/fontawesome-webfont.woff</exclude>
<exclude>**/fonts/fontawesome-webfont.ttf</exclude>
<exclude>**/fonts/fontawesome-webfont.svg</exclude>
</excludes>
</configuration>
<executions>
Expand Down
Loading