optimization tests + query builder

This commit is contained in:
wea_ondara
2022-07-26 19:33:35 +02:00
parent ff4385aa5c
commit 3824a6f595
35 changed files with 816 additions and 24 deletions

13
pom.xml
View File

@@ -14,6 +14,7 @@
<maven.compiler.target>17</maven.compiler.target>
<asm.version>9.3</asm.version>
<lombok.version>1.18.16</lombok.version>
<mockito.version>4.6.1</mockito.version>
</properties>
<profiles>
@@ -133,6 +134,18 @@
<version>${lombok.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<!-- <dependency>-->
<!-- <groupId>javax.persistence</groupId>-->
<!-- <artifactId>javax.persistence-api</artifactId>-->