-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create gradle.yml for Actions (#1) (#2) * Create gradle.yml for Actions * Update gradle.yml * actions exectute denied * Syncing (#4) * Create gradle.yml for Actions (#1) * Create gradle.yml for Actions * Update gradle.yml * actions exectute denied * modify action build to publish built to packages (#3) * Updating old dependencies (#10) * Create gradle.yml for Actions (#1) * Create gradle.yml for Actions * Update gradle.yml * actions exectute denied * modify action build to publish built to packages (#3) * Create dependabot.yml * Bump org.junit:junit-bom from 5.9.1 to 5.10.1 (#8) Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.9.1 to 5.10.1. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.9.1...r5.10.1) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.kafka:kafka-streams from 3.2.3 to 3.6.0 (#7) Bumps org.apache.kafka:kafka-streams from 3.2.3 to 3.6.0. --- updated-dependencies: - dependency-name: org.apache.kafka:kafka-streams dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fragmenting html using thymeleaf, added dataTables with xlsx,pdf,csv export for consumer table, added errors rejected to return * added errors rejected to return * Updating dependabot deps, added xss purify demo, logback->log4j2, field injection->constructor injection * syncing branch with java21 enhancements Signed-off-by: mibracy <crusty512@yahoo.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: mibracy <crusty512@yahoo.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
709ef76
commit 76a6f25
Showing
7 changed files
with
46 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head th:replace="fragments/head :: default" /> | ||
<html lang="en" | ||
xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org" | ||
xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity5"> | ||
<head th:replace="~{fragments/head :: default}" /> | ||
<body> | ||
<div th:replace="fragments/demos :: temperature" /> | ||
<div th:replace="fragments/demos :: liveTable" /> | ||
<div class="float-end m-2 me-5"> | ||
<button id="h2-console" class="btn btn-sm btn-outline-dark">Console</button> | ||
</div> | ||
<div th:replace="~{fragments/demos :: temperature}" /> | ||
<div th:replace="~{fragments/demos :: liveTable}" /> | ||
</body> | ||
</html> |