BAEL-6032 - @JsonIgnore vs @Transient (#13254)

* BAEL-6032 - @JsonIgnore vs @Transient

* Rename test methods
This commit is contained in:
apeterlic
2023-01-12 14:20:58 +01:00
committed by GitHub
parent dc5641200e
commit 02b56bf783
8 changed files with 209 additions and 0 deletions
@@ -25,6 +25,27 @@
<version>${rest-assured.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jdbc</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
@@ -38,7 +59,9 @@
</build>
<properties>
<h2.version>2.1.214</h2.version>
<rest-assured.version>3.1.1</rest-assured.version>
<spring-boot.version>2.5.0</spring-boot.version>
</properties>
</project>