|
6 | 6 |
|
7 | 7 | <groupId>org.zalando</groupId> |
8 | 8 | <artifactId>zalando-sprocwrapper</artifactId> |
9 | | - <version>3.2.2-SNAPSHOT</version> |
| 9 | + <version>4.0.0-SNAPSHOT</version> |
10 | 10 |
|
11 | 11 | <name>Stored Procedure Wrapper</name> |
12 | 12 | <description>Library to make PostgreSQL stored procedures available through simple Java "*SProcService" interfaces |
|
59 | 59 |
|
60 | 60 | <properties> |
61 | 61 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
62 | | - <maven.compiler.source>8</maven.compiler.source> |
63 | | - <maven.compiler.target>8</maven.compiler.target> |
64 | | - <spring.version>5.3.23</spring.version> |
65 | | - <postgresql.version>42.5.1</postgresql.version> |
66 | | - <dependency-check-maven.version>7.2.1</dependency-check-maven.version> |
| 62 | + <maven.compiler.source>17</maven.compiler.source> |
| 63 | + <maven.compiler.target>17</maven.compiler.target> |
| 64 | + <spring.version>6.2.0</spring.version> |
| 65 | + <postgresql.version>42.7.4</postgresql.version> |
67 | 66 | </properties> |
68 | 67 |
|
69 | 68 | <dependencies> |
|
83 | 82 | <version>${postgresql.version}</version> |
84 | 83 | </dependency> |
85 | 84 | <dependency> |
86 | | - <groupId>commons-lang</groupId> |
87 | | - <artifactId>commons-lang</artifactId> |
88 | | - <version>2.6</version> |
89 | | - </dependency> |
90 | | - <dependency> |
91 | | - <groupId>commons-beanutils</groupId> |
92 | | - <artifactId>commons-beanutils</artifactId> |
93 | | - <version>1.9.4</version> |
94 | | - <exclusions> |
95 | | - <exclusion> |
96 | | - <groupId>commons-logging</groupId> |
97 | | - <artifactId>commons-logging</artifactId> |
98 | | - </exclusion> |
99 | | - </exclusions> |
| 85 | + <groupId>org.apache.commons</groupId> |
| 86 | + <artifactId>commons-lang3</artifactId> |
| 87 | + <version>3.17.0</version> |
100 | 88 | </dependency> |
101 | 89 | <dependency> |
102 | 90 | <groupId>org.hibernate.validator</groupId> |
103 | 91 | <artifactId>hibernate-validator</artifactId> |
104 | | - <version>6.1.5.Final</version> |
| 92 | + <version>9.0.0.Beta3</version> |
105 | 93 | </dependency> |
106 | 94 | <dependency> |
107 | 95 | <groupId>org.glassfish</groupId> |
108 | | - <artifactId>javax.el</artifactId> |
109 | | - <version>3.0.1-b08</version> |
| 96 | + <artifactId>jakarta.el</artifactId> |
| 97 | + <version>5.0.0-M1</version> |
110 | 98 | </dependency> |
| 99 | + |
111 | 100 | <dependency> |
112 | 101 | <groupId>org.reflections</groupId> |
113 | 102 | <artifactId>reflections</artifactId> |
|
117 | 106 | <dependency> |
118 | 107 | <groupId>com.google.guava</groupId> |
119 | 108 | <artifactId>guava</artifactId> |
120 | | - <version>30.1-jre</version> |
| 109 | + <version>33.3.1-jre</version> |
121 | 110 | </dependency> |
122 | 111 | <dependency> |
123 | 112 | <groupId>javax.persistence</groupId> |
|
143 | 132 | <version>${spring.version}</version> |
144 | 133 | <scope>test</scope> |
145 | 134 | </dependency> |
| 135 | + <dependency> |
| 136 | + <groupId>org.springframework</groupId> |
| 137 | + <artifactId>spring-beans</artifactId> |
| 138 | + <version>${spring.version}</version> |
| 139 | + </dependency> |
146 | 140 | <dependency> |
147 | 141 | <groupId>org.springframework</groupId> |
148 | 142 | <artifactId>spring-test</artifactId> |
|
197 | 191 | </execution> |
198 | 192 | </executions> |
199 | 193 | </plugin> |
200 | | - <plugin> |
201 | | - <groupId>org.owasp</groupId> |
202 | | - <artifactId>dependency-check-maven</artifactId> |
203 | | - <version>${dependency-check-maven.version}</version> |
204 | | - <executions> |
205 | | - <execution> |
206 | | - <goals> |
207 | | - <goal>check</goal> |
208 | | - </goals> |
209 | | - </execution> |
210 | | - </executions> |
211 | | - <configuration> |
212 | | - <failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability> |
213 | | - <suppressionFiles> |
214 | | - <suppressionFile>cve-suppressions.xml</suppressionFile> |
215 | | - </suppressionFiles> |
216 | | - </configuration> |
217 | | - </plugin> |
218 | 194 | <plugin> |
219 | 195 | <groupId>org.basepom.maven</groupId> |
220 | 196 | <artifactId>duplicate-finder-maven-plugin</artifactId> |
|
272 | 248 | <plugin> |
273 | 249 | <groupId>org.jacoco</groupId> |
274 | 250 | <artifactId>jacoco-maven-plugin</artifactId> |
275 | | - <version>0.8.4</version> |
| 251 | + <version>0.8.12</version> |
276 | 252 | <executions> |
277 | 253 | <execution> |
278 | 254 | <id>prepare-agent</id> |
|
0 commit comments