Skip to content
Open
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
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>

<test.wildfly.version>27.0.1.Final</test.wildfly.version>
<test.wildfly.version>29.0.1.Final</test.wildfly.version>
<test.glassfish.version>7.0.0</test.glassfish.version>
<test.piranha.version>23.1.0-SNAPSHOT</test.piranha.version>
</properties>
Expand Down Expand Up @@ -409,7 +409,6 @@
<configuration>
<jbossHome>${project.build.directory}/wildfly-${test.wildfly.version}</jbossHome>
<commands>
<command>/subsystem=elytron/policy=jacc:add(jacc-policy={})</command>
<command>/subsystem=undertow/application-security-domain=other:write-attribute(name=integrated-jaspi, value=false)</command>
</commands>
</configuration>
Expand Down
7 changes: 0 additions & 7 deletions src/main/resources/META-INF/persistence.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@
<property name="hibernate.cache.use_second_level_cache" value="true" />
<property name="hibernate.cache.use_query_cache" value="true" />

<!--
Needed because org.example.kickoff.config.InstantConverter is used, and Hibernate does not seem to fully apply it.
Without this it will still think the SQL type is 3003 (org.hibernate.types.SqlTypes.TIMESTAMP_UTC) and therefor complain
when it's actually 93 (java.sql.Types.TIMESTAMP).
-->
<property name="hibernate.type.preferred_instant_jdbc_type" value="TIMESTAMP"/>

<property name="wildfly.jpa.twophasebootstrap" value="false" /> <!-- https://issues.jboss.org/browse/WFLY-2727 -->

<property name="eclipselink.deploy-on-startup" value="true" />
Expand Down
7 changes: 0 additions & 7 deletions src/test/resources/test-persistence.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,6 @@
<property name="hibernate.cache.use_second_level_cache" value="false" />
<property name="hibernate.cache.use_query_cache" value="false" />

<!--
Needed because org.example.kickoff.config.InstantConverter is used, and Hibernate does not seem to fully apply it.
Without this it will still think the SQL type is 3003 (org.hibernate.types.SqlTypes.TIMESTAMP_UTC) and therefor complain
when it's actually 93 (java.sql.Types.TIMESTAMP).
-->
<property name="hibernate.type.preferred_instant_jdbc_type" value="TIMESTAMP"/>

<property name="wildfly.jpa.twophasebootstrap" value="false" /> <!-- https://issues.jboss.org/browse/WFLY-2727 -->

<!-- EclipseLink specific options -->
Expand Down