Skip to content

Commit

Permalink
Fix missing Jackson JSR-310 module and fix entity model for ORM 6.5+
Browse files Browse the repository at this point in the history
  • Loading branch information
beikov committed Jun 11, 2024
1 parent 067407a commit 48a4747
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@

import javax.persistence.DiscriminatorValue;
import javax.persistence.Entity;
import javax.persistence.Table;

@Entity
@Table(name = "emb_tst_ent_sub")
@DiscriminatorValue("sub")
public class EmbeddableTestEntitySub extends EmbeddableTestEntity {

Expand Down
10 changes: 8 additions & 2 deletions integration/spring-data/testsuite/webmvc-jakarta-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,12 @@
<version>2.17.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.17.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
Expand Down Expand Up @@ -281,8 +287,8 @@
<profile>
<id>spring-data-3.2.x</id>
<properties>
<version.spring-boot>${version.spring-data-3.1-spring-boot}</version.spring-boot>
<version.spring-data>${version.spring-data-3.1}</version.spring-data>
<version.spring-boot>${version.spring-data-3.2-spring-boot}</version.spring-boot>
<version.spring-data>${version.spring-data-3.2}</version.spring-data>
</properties>
<dependencies>
<dependency>
Expand Down

0 comments on commit 48a4747

Please sign in to comment.