[java-plugin-storage-jdbc] branch main updated (d12afa9 -> 7b8a5b8)
Rod Widdowson
rdw at steadingsoftware.com
Fri May 20 14:00:53 UTC 2022
This is an automated email from the git hooks/post-receive script.
rdw pushed a change to branch main
in repository java-plugin-storage-jdbc.
from d12afa9 Initial commit.
new 8e038de OSJ-342 Investigate Strategies to end of life our use of Hibernate in V5
new a4ccf54 Untabify
new b8b9fa4 Fix auto created files
new 5d5a446 More preparation - primarily getting names correct
new 7b8a5b8 OSJ-342 Investigate Strategies to end of life our use of Hibernate in V5
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 7 +-
checkstyle.xml | 117 +++
jdbc-storage-api/pom.xml | 59 ++
.../shibboleth/plugin/storage/jdbc/Version.java | 32 +
jdbc-storage-dist/pom.xml | 84 ++
jdbc-storage-dist/src/main/assembly/assembly.xml | 74 ++
.../src/main/enforcer/shibbolethKeys.gpg | Bin 0 -> 55669 bytes
.../src/main/resources/bootstrap/keys.txt | 484 +++++++++
jdbc-storage-impl/pom.xml | 72 ++
.../storage/jdbc/impl/JDBCStorageModule.java | 25 +
.../storage/jdbc/impl/JDBCStoragePlugin.java | 27 +
.../storage/jdbc/impl/JDBCStorageRecord.java | 48 +
.../storage/jdbc/impl/JDBCStorageService.java | 1047 ++++++++++++++++++++
.../plugin/storage/jdbc/impl/package-info.java | 21 +
.../services/net.shibboleth.idp.module.IdPModule | 1 +
.../services/net.shibboleth.idp.plugin.IdPPlugin | 2 +
.../idp/plugin/storage/jdbc/conf/placeholder.xml | 1 +
.../idp/plugin/storage/jdbc/module.properties | 14 +
.../idp/plugin/storage/jdbc/plugin.properties | 8 +
.../storage/jdbc/impl/JDBCStorageServiceTest.java | 328 ++++++
.../jdbc/impl/JDCBJPAMixedStorageServiceTest.java | 316 ++++++
.../src/test/resources/logback-test.xml | 21 +
pom.xml | 127 +++
23 files changed, 2914 insertions(+), 1 deletion(-)
create mode 100644 checkstyle.xml
create mode 100644 jdbc-storage-api/pom.xml
create mode 100644 jdbc-storage-api/src/main/java/net/shibboleth/plugin/storage/jdbc/Version.java
create mode 100644 jdbc-storage-dist/pom.xml
create mode 100644 jdbc-storage-dist/src/main/assembly/assembly.xml
create mode 100644 jdbc-storage-dist/src/main/enforcer/shibbolethKeys.gpg
create mode 100644 jdbc-storage-dist/src/main/resources/bootstrap/keys.txt
create mode 100644 jdbc-storage-impl/pom.xml
create mode 100644 jdbc-storage-impl/src/main/java/net/shibboleth/plugin/storage/jdbc/impl/JDBCStorageModule.java
create mode 100644 jdbc-storage-impl/src/main/java/net/shibboleth/plugin/storage/jdbc/impl/JDBCStoragePlugin.java
create mode 100644 jdbc-storage-impl/src/main/java/net/shibboleth/plugin/storage/jdbc/impl/JDBCStorageRecord.java
create mode 100644 jdbc-storage-impl/src/main/java/net/shibboleth/plugin/storage/jdbc/impl/JDBCStorageService.java
create mode 100644 jdbc-storage-impl/src/main/java/net/shibboleth/plugin/storage/jdbc/impl/package-info.java
create mode 100644 jdbc-storage-impl/src/main/resources/META-INF/services/net.shibboleth.idp.module.IdPModule
create mode 100644 jdbc-storage-impl/src/main/resources/META-INF/services/net.shibboleth.idp.plugin.IdPPlugin
create mode 100644 jdbc-storage-impl/src/main/resources/net/shibboleth/idp/plugin/storage/jdbc/conf/placeholder.xml
create mode 100644 jdbc-storage-impl/src/main/resources/net/shibboleth/idp/plugin/storage/jdbc/module.properties
create mode 100644 jdbc-storage-impl/src/main/resources/net/shibboleth/idp/plugin/storage/jdbc/plugin.properties
create mode 100644 jdbc-storage-impl/src/test/java/net/shibboleth/plugin/storage/jdbc/impl/JDBCStorageServiceTest.java
create mode 100644 jdbc-storage-impl/src/test/java/net/shibboleth/plugin/storage/jdbc/impl/JDCBJPAMixedStorageServiceTest.java
create mode 100644 jdbc-storage-impl/src/test/resources/logback-test.xml
create mode 100644 pom.xml
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list