|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.folio</groupId> |
5 | 5 | <artifactId>folio-s3-client</artifactId> |
6 | | - <version>3.0.1-SNAPSHOT</version> |
| 6 | + <version>3.0.2-SNAPSHOT</version> |
7 | 7 | <name>folio-s3-client</name> |
8 | 8 | <description>A shared library for FOLIO S3 client</description> |
9 | 9 | <packaging>jar</packaging> |
|
20 | 20 | <maven.compiler.source>21</maven.compiler.source> |
21 | 21 | <maven.compiler.target>21</maven.compiler.target> |
22 | 22 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | | - <lombok.version>1.18.36</lombok.version> |
24 | | - <apache.commons.lang3.version>3.17.0</apache.commons.lang3.version> |
| 23 | + <lombok.version>1.18.44</lombok.version> |
| 24 | + <apache.commons.lang3.version>3.20.0</apache.commons.lang3.version> |
25 | 25 | <minio.version>8.6.0</minio.version> |
26 | | - <okhttp.version>5.1.0</okhttp.version> |
27 | | - <log4j.version>2.23.1</log4j.version> |
28 | | - <aws.sdk.version>2.40.17</aws.sdk.version> |
29 | | - <junit.version>5.12.0</junit.version> |
30 | | - <testcontainers.version>1.20.5</testcontainers.version> |
31 | | - <commons-io.version>2.18.0</commons-io.version> |
32 | | - <localstack.version>1.20.5</localstack.version> |
33 | | - <sonar.exclusions> |
34 | | - **/src/main/java/org/folio/s3/client/S3ClientProperties.java |
35 | | - </sonar.exclusions> |
| 26 | + <okhttp.version>5.3.2</okhttp.version> |
| 27 | + <log4j.version>2.25.4</log4j.version> |
| 28 | + <aws.sdk.version>2.42.34</aws.sdk.version> |
| 29 | + <junit.version>6.0.3</junit.version> |
| 30 | + <testcontainers.version>2.0.4</testcontainers.version> |
| 31 | + <commons-io.version>2.21.0</commons-io.version> |
36 | 32 | </properties> |
37 | 33 |
|
38 | 34 | <dependencies> |
|
93 | 89 | </dependency> |
94 | 90 | <dependency> |
95 | 91 | <groupId>org.testcontainers</groupId> |
96 | | - <artifactId>localstack</artifactId> |
97 | | - <version>${localstack.version}</version> |
| 92 | + <artifactId>testcontainers-localstack</artifactId> |
| 93 | + <version>${testcontainers.version}</version> |
98 | 94 | <scope>test</scope> |
99 | 95 | </dependency> |
100 | 96 | </dependencies> |
|
105 | 101 | <plugin> |
106 | 102 | <groupId>org.codehaus.mojo</groupId> |
107 | 103 | <artifactId>versions-maven-plugin</artifactId> |
108 | | - <version>2.16.1</version> |
| 104 | + <version>2.21.0</version> |
109 | 105 | <executions> |
110 | 106 | <execution> |
111 | 107 | <id>display-dependency</id> |
|
123 | 119 | <plugin> |
124 | 120 | <groupId>org.apache.maven.plugins</groupId> |
125 | 121 | <artifactId>maven-enforcer-plugin</artifactId> |
126 | | - <version>3.4.1</version> |
| 122 | + <version>3.6.2</version> |
127 | 123 | <executions> |
128 | 124 | <execution> |
129 | 125 | <id>enforce-maven</id> |
|
144 | 140 | <plugin> |
145 | 141 | <groupId>org.codehaus.mojo</groupId> |
146 | 142 | <artifactId>build-helper-maven-plugin</artifactId> |
147 | | - <version>3.4.0</version> |
| 143 | + <version>3.6.1</version> |
148 | 144 | <executions> |
149 | 145 | <execution> |
150 | 146 | <phase>generate-sources</phase> |
|
162 | 158 |
|
163 | 159 | <plugin> |
164 | 160 | <artifactId>maven-source-plugin</artifactId> |
165 | | - <version>3.3.0</version> |
| 161 | + <version>3.4.0</version> |
166 | 162 | <executions> |
167 | 163 | <execution> |
168 | 164 | <id>attach-sources</id> |
|
176 | 172 |
|
177 | 173 | <plugin> |
178 | 174 | <artifactId>maven-javadoc-plugin</artifactId> |
179 | | - <version>3.6.0</version> |
| 175 | + <version>3.12.0</version> |
180 | 176 | <executions> |
181 | 177 | <execution> |
182 | 178 | <id>attach-javadocs</id> |
|
190 | 186 |
|
191 | 187 | <plugin> |
192 | 188 | <artifactId>maven-deploy-plugin</artifactId> |
193 | | - <version>3.1.1</version> |
| 189 | + <version>3.1.4</version> |
194 | 190 | <executions> |
195 | 191 | <execution> |
196 | 192 | <id>deploy</id> |
|
205 | 201 | <plugin> |
206 | 202 | <groupId>org.apache.maven.plugins</groupId> |
207 | 203 | <artifactId>maven-compiler-plugin</artifactId> |
208 | | - <version>3.14.0</version> |
| 204 | + <version>3.15.0</version> |
209 | 205 | <configuration> |
210 | 206 | <compilerVersion>21</compilerVersion> |
211 | 207 | </configuration> |
|
214 | 210 | <plugin> |
215 | 211 | <groupId>org.apache.maven.plugins</groupId> |
216 | 212 | <artifactId>maven-release-plugin</artifactId> |
217 | | - <version>3.0.1</version> |
| 213 | + <version>3.3.1</version> |
218 | 214 | <configuration> |
219 | 215 | <preparationGoals>clean verify</preparationGoals> |
220 | 216 | <tagNameFormat>v@{project.version}</tagNameFormat> |
|
226 | 222 | <plugin> |
227 | 223 | <groupId>org.apache.maven.plugins</groupId> |
228 | 224 | <artifactId>maven-surefire-plugin</artifactId> |
229 | | - <version>3.2.1</version> |
| 225 | + <version>3.5.5</version> |
230 | 226 | </plugin> |
231 | 227 |
|
232 | 228 | </plugins> |
|
0 commit comments