|
7 | 7 | <parent> |
8 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
9 | 9 | <groupId>org.springframework.boot</groupId> |
10 | | - <version>2.2.7.RELEASE</version> |
| 10 | + <version>2.7.18</version> |
| 11 | + <relativePath/> |
11 | 12 | </parent> |
12 | 13 |
|
13 | 14 | <groupId>com.beyt</groupId> |
14 | | - <artifactId>spring-jpa-generic-criteria</artifactId> |
15 | | - <version>0.1.1</version> |
| 15 | + <artifactId>spring-jpa-dynamic-query</artifactId> |
| 16 | + <version>0.2.0</version> |
16 | 17 |
|
17 | 18 |
|
18 | 19 | <properties> |
19 | | - <maven.compiler.source>8</maven.compiler.source> |
20 | | - <maven.compiler.target>8</maven.compiler.target> |
| 20 | + <java.version>17</java.version> |
21 | 21 | </properties> |
22 | 22 |
|
23 | 23 | <dependencies> |
24 | 24 | <dependency> |
25 | | - <groupId>org.springframework.boot</groupId> |
26 | | - <artifactId>spring-boot-starter-web</artifactId> |
27 | | - <scope>compile</scope> |
| 25 | + <groupId>org.springframework</groupId> |
| 26 | + <artifactId>spring-web</artifactId> |
28 | 27 | </dependency> |
29 | 28 | <dependency> |
30 | | - <groupId>org.projectlombok</groupId> |
31 | | - <artifactId>lombok</artifactId> |
| 29 | + <groupId>org.springframework</groupId> |
| 30 | + <artifactId>spring-webmvc</artifactId> |
32 | 31 | </dependency> |
33 | 32 | <dependency> |
34 | | - <groupId>com.fasterxml.jackson.datatype</groupId> |
35 | | - <artifactId>jackson-datatype-hibernate5</artifactId> |
| 33 | + <groupId>org.springframework.data</groupId> |
| 34 | + <artifactId>spring-data-commons</artifactId> |
36 | 35 | </dependency> |
37 | 36 | <dependency> |
38 | | - <groupId>com.zaxxer</groupId> |
39 | | - <artifactId>HikariCP</artifactId> |
| 37 | + <groupId>org.springframework.data</groupId> |
| 38 | + <artifactId>spring-data-jpa</artifactId> |
40 | 39 | </dependency> |
41 | 40 | <dependency> |
42 | | - <groupId>org.apache.commons</groupId> |
43 | | - <artifactId>commons-collections4</artifactId> |
44 | | - <version>4.1</version> |
| 41 | + <groupId>jakarta.persistence</groupId> |
| 42 | + <artifactId>jakarta.persistence-api</artifactId> |
45 | 43 | </dependency> |
46 | 44 | <dependency> |
47 | | - <groupId>org.springframework.boot</groupId> |
48 | | - <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 45 | + <groupId>org.hibernate</groupId> |
| 46 | + <artifactId>hibernate-core</artifactId> |
49 | 47 | </dependency> |
50 | 48 | <dependency> |
51 | | - <groupId>org.springframework.boot</groupId> |
52 | | - <artifactId>spring-boot-starter-cloud-connectors</artifactId> |
| 49 | + <groupId>org.projectlombok</groupId> |
| 50 | + <artifactId>lombok</artifactId> |
| 51 | + <optional>true</optional> |
53 | 52 | </dependency> |
54 | 53 | <dependency> |
55 | | - <groupId>org.postgresql</groupId> |
56 | | - <artifactId>postgresql</artifactId> |
| 54 | + <groupId>org.apache.commons</groupId> |
| 55 | + <artifactId>commons-collections4</artifactId> |
| 56 | + <version>4.4</version> |
57 | 57 | </dependency> |
58 | 58 | <dependency> |
59 | | - <groupId>com.google.code.gson</groupId> |
60 | | - <artifactId>gson</artifactId> |
61 | | - <version>2.8.5</version> |
| 59 | + <groupId>org.apache.commons</groupId> |
| 60 | + <artifactId>commons-lang3</artifactId> |
62 | 61 | </dependency> |
63 | 62 |
|
| 63 | + <!-- TEST DEPENDENCIES--> |
64 | 64 | <dependency> |
65 | | - <groupId>org.mapstruct</groupId> |
66 | | - <artifactId>mapstruct</artifactId> |
67 | | - <version>LATEST</version> |
| 65 | + <groupId>org.springframework.boot</groupId> |
| 66 | + <artifactId>spring-boot-starter-test</artifactId> |
| 67 | + <scope>test</scope> |
68 | 68 | </dependency> |
69 | 69 | <dependency> |
70 | | - <groupId>org.mapstruct</groupId> |
71 | | - <artifactId>mapstruct-processor</artifactId> |
72 | | - <version>LATEST</version> |
73 | | - <scope>provided</scope> |
| 70 | + <groupId>org.springframework.boot</groupId> |
| 71 | + <artifactId>spring-boot-starter-web</artifactId> |
| 72 | + <scope>test</scope> |
74 | 73 | </dependency> |
75 | 74 | <dependency> |
76 | | - <groupId>net.jodah</groupId> |
77 | | - <artifactId>typetools</artifactId> |
78 | | - <version>0.6.2</version> |
| 75 | + <groupId>org.springframework.boot</groupId> |
| 76 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 77 | + <scope>test</scope> |
79 | 78 | </dependency> |
80 | | - |
81 | 79 | <dependency> |
82 | 80 | <groupId>com.h2database</groupId> |
83 | 81 | <artifactId>h2</artifactId> |
84 | 82 | <scope>test</scope> |
85 | 83 | </dependency> |
86 | 84 | <dependency> |
87 | | - <groupId>org.springframework.boot</groupId> |
88 | | - <artifactId>spring-boot-starter-test</artifactId> |
89 | | - <scope>test</scope> |
90 | | - </dependency> |
91 | | - <dependency> |
92 | | - <groupId>org.junit.jupiter</groupId> |
93 | | - <artifactId>junit-jupiter-api</artifactId> |
| 85 | + <groupId>com.google.code.gson</groupId> |
| 86 | + <artifactId>gson</artifactId> |
| 87 | + <version>2.10.1</version> |
94 | 88 | <scope>test</scope> |
95 | 89 | </dependency> |
96 | 90 | </dependencies> |
97 | | - |
98 | | - <build> |
99 | | - <plugins> |
100 | | - <plugin> |
101 | | - <groupId>com.mysema.maven</groupId> |
102 | | - <artifactId>apt-maven-plugin</artifactId> |
103 | | - <version>1.1.3</version> |
104 | | - <executions> |
105 | | - <execution> |
106 | | - <goals> |
107 | | - <goal>process</goal> |
108 | | - </goals> |
109 | | - <configuration> |
110 | | - <outputDirectory>target/generated-sources/java</outputDirectory> |
111 | | - <processor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</processor> |
112 | | - </configuration> |
113 | | - </execution> |
114 | | - </executions> |
115 | | - </plugin> |
116 | | - </plugins> |
117 | | - </build> |
118 | | - |
119 | | - |
120 | 91 | </project> |
0 commit comments