Skip to content

Commit

Permalink
Add support for Spring Data Jpa 3.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
reda-alaoui committed Sep 6, 2023
1 parent 4370462 commit 4f1a2b9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 22 deletions.
18 changes: 1 addition & 17 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.cosium.spring.data</groupId>
<artifactId>spring-data-jpa-entity-graph-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.1.0-SNAPSHOT</version>
</parent>

<name>Spring Data JPA EntityGraph</name>
Expand Down Expand Up @@ -106,22 +106,6 @@

<build>
<plugins>
<plugin>
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
<version>1.1.3</version>
<executions>
<execution>
<goals>
<goal>test-process</goal>
</goals>
<configuration>
<outputDirectory>target/generated-test-sources/test-annotations</outputDirectory>
<processor>com.querydsl.apt.jpa.JPAAnnotationProcessor</processor>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.cosium.spring.data</groupId>
<artifactId>spring-data-jpa-entity-graph-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.1.0-SNAPSHOT</version>
</parent>

<name>Spring Data JPA EntityGraph Generator</name>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>com.cosium.spring.data</groupId>
<artifactId>spring-data-jpa-entity-graph-parent</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>3.1.0-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
Expand All @@ -20,13 +20,13 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>

<spring.data.jpa>3.0.5</spring.data.jpa>
<spring.data.jpa>3.1.3</spring.data.jpa>
<querydsl>5.0.0</querydsl>

<dbunit>2.7.3</dbunit>
<spring-test-dbunit>1.3.0</spring-test-dbunit>
<spring.framework.version>6.0.11</spring.framework.version>
<hibernate.version>6.1.5.Final</hibernate.version>
<hibernate.version>6.2.7.Final</hibernate.version>
<hsqldb.version>2.7.2</hsqldb.version>
<assertj>3.24.2</assertj>
<logback>1.4.11</logback>
Expand All @@ -40,7 +40,7 @@
<dependency>
<groupId>jakarta.persistence</groupId>
<artifactId>jakarta.persistence-api</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
Expand Down

0 comments on commit 4f1a2b9

Please sign in to comment.