Fix Quarkus IT tests for Quarkus 3
This commit is contained in:
parent
ae56c657b0
commit
a895cc1a60
2 changed files with 15 additions and 3 deletions
|
@ -489,6 +489,17 @@
|
|||
<artifactId>infinispan-client-hotrod-jakarta</artifactId>
|
||||
<version>${infinispan.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.infinispan</groupId>
|
||||
<artifactId>infinispan-query-dsl</artifactId>
|
||||
<version>${infinispan.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>*</groupId>
|
||||
<artifactId>*</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.infinispan</groupId>
|
||||
<artifactId>infinispan-remote-query-client</artifactId>
|
||||
|
|
|
@ -16,9 +16,10 @@
|
|||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<persistence version="3.0"
|
||||
xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="https://jakarta.ee/xml/ns/persistence https://jakarta.ee/xml/ns/persistence/persistence_3_0.xsd">
|
||||
<persistence xmlns="https://jakarta.ee/xml/ns/persistence"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="https://jakarta.ee/xml/ns/persistence https://jakarta.ee/xml/ns/persistence/persistence_3_0.xsd"
|
||||
version="3.0">
|
||||
<persistence-unit name="user-store" transaction-type="JTA">
|
||||
<class>com.acme.provider.legacy.jpa.entity.Realm</class>
|
||||
<properties>
|
||||
|
|
Loading…
Reference in a new issue