From e3bc3ee826b95168fed2f62f8e1019bad457e39e Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sun, 6 Aug 2023 16:21:11 +0200 Subject: Updates for Quarkus 3. Change-Id: I14aff18aa1e31944619dfb6cc57955484227b298 --- .../META-INF/services/ org.hibernate.boot.model.FunctionContributor | 1 + src/main/resources/application.properties | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 src/main/resources/META-INF/services/ org.hibernate.boot.model.FunctionContributor (limited to 'src/main/resources') diff --git a/src/main/resources/META-INF/services/ org.hibernate.boot.model.FunctionContributor b/src/main/resources/META-INF/services/ org.hibernate.boot.model.FunctionContributor new file mode 100644 index 0000000..0c3be1e --- /dev/null +++ b/src/main/resources/META-INF/services/ org.hibernate.boot.model.FunctionContributor @@ -0,0 +1 @@ +eu.mulk.mulkcms2.common.hibernate.HibernateFunctionContributor diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index bd9db97..e576172 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -14,7 +14,6 @@ quarkus.datasource.jdbc.driver = org.postgresql.Driver quarkus.datasource.jdbc.max-size = 8 quarkus.datasource.jdbc.min-size = 0 -quarkus.hibernate-orm.metadata-builder-contributor = eu.mulk.mulkcms2.common.hibernate.HibernateMetadataBuilderContributor quarkus.hibernate-orm.validate-in-dev-mode = false quarkus.liquibase.migrate-at-start = true -- cgit v1.2.3 From 475bf006583288e6544374ba7c5d085f0b4235f2 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sun, 6 Aug 2023 20:56:30 +0200 Subject: De-generics-ize Post, PostText. Hibernate 6 did not like the old scheme. Change-Id: I060e077648ab54589d5b7574137c10517b4c4114 --- src/main/resources/templates/PostResource/postList.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/resources') diff --git a/src/main/resources/templates/PostResource/postList.html b/src/main/resources/templates/PostResource/postList.html index 89267a2..434c22a 100644 --- a/src/main/resources/templates/PostResource/postList.html +++ b/src/main/resources/templates/PostResource/postList.html @@ -1,4 +1,4 @@ -{@java.util.List>> postDays} +{@java.util.List> postDays} {@java.lang.String feedUri} {@java.lang.String pageTitle} {@boolean showBookmarkForm} -- cgit v1.2.3 From 5326f5ef3027ed24666a82a4820a0f4ad3c4d280 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sun, 6 Aug 2023 21:34:08 +0200 Subject: Revert "De-generics-ize Post, PostText." This reverts commit 475bf006583288e6544374ba7c5d085f0b4235f2. Change-Id: I78bc6e061c3cd8ecc7c8794168596e26de1e6af8 --- src/main/resources/templates/PostResource/postList.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/resources') diff --git a/src/main/resources/templates/PostResource/postList.html b/src/main/resources/templates/PostResource/postList.html index 434c22a..89267a2 100644 --- a/src/main/resources/templates/PostResource/postList.html +++ b/src/main/resources/templates/PostResource/postList.html @@ -1,4 +1,4 @@ -{@java.util.List> postDays} +{@java.util.List>> postDays} {@java.lang.String feedUri} {@java.lang.String pageTitle} {@boolean showBookmarkForm} -- cgit v1.2.3