|
49 | 49 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
50 | 50 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
51 | 51 |
|
52 | | - <zip4j.version>2.11.5</zip4j.version> |
53 | | - <slf4j.version>2.0.17</slf4j.version> |
54 | | - |
55 | | - <poi.version>5.4.1</poi.version> |
56 | | - <rtfparserkit.version>1.16.0</rtfparserkit.version> |
57 | | - <commons.io.version>2.19.0</commons.io.version> |
58 | | - <commons-compress.version>1.27.1</commons-compress.version> |
| 52 | + <bouncycastle.version>1.82</bouncycastle.version> |
| 53 | + <commons-compress.version>1.28.0</commons-compress.version> |
| 54 | + <commons.io.version>2.21.0</commons.io.version> |
| 55 | + <jaxb-api.version>4.0.4</jaxb-api.version> |
| 56 | + <jaxb-core.version>4.0.6</jaxb-core.version> |
| 57 | + <jaxb-impl.version>4.0.6</jaxb-impl.version> |
59 | 58 | <opennlp-tools.version>1.9.3</opennlp-tools.version> |
60 | | - |
61 | | - <pdfbox.version>3.0.5</pdfbox.version> |
62 | | - |
63 | | - <jaxb-api.version>4.0.2</jaxb-api.version> |
64 | | - <jaxb-core.version>4.0.5</jaxb-core.version> |
65 | | - <jaxb-impl.version>4.0.5</jaxb-impl.version> |
66 | | - |
| 59 | + <pdfbox.version>3.0.6</pdfbox.version> |
| 60 | + <poi.version>5.5.0</poi.version> |
| 61 | + <rtfparserkit.version>1.16.0</rtfparserkit.version> |
| 62 | + <slf4j.version>2.0.17</slf4j.version> |
| 63 | + <zip4j.version>2.11.5</zip4j.version> |
67 | 64 | <!-- testing --> |
68 | | - <junit.version>5.11.4</junit.version> |
69 | 65 | <hamcrest.version>3.0</hamcrest.version> |
70 | 66 | <jmock-junit5.version>2.13.1</jmock-junit5.version> |
71 | | - <log4j.version>2.24.3</log4j.version> |
72 | | - |
73 | | - <!-- sonarcloud --> |
74 | | - <sonar.projectKey>levigo_filetype-analyzer</sonar.projectKey> |
75 | | - <sonar.organization>levigo</sonar.organization> |
76 | | - <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
77 | | - |
78 | | - <bouncycastle.version>1.80</bouncycastle.version> |
| 67 | + <junit.version>5.11.4</junit.version> |
| 68 | + <log4j.version>2.25.2</log4j.version> |
79 | 69 | </properties> |
80 | 70 |
|
81 | 71 | <build> |
82 | 72 | <plugins> |
83 | 73 | <plugin> |
84 | 74 | <groupId>org.apache.maven.plugins</groupId> |
85 | 75 | <artifactId>maven-compiler-plugin</artifactId> |
86 | | - <version>3.13.0</version> |
| 76 | + <version>3.14.1</version> |
87 | 77 | <configuration> |
88 | 78 | <source>17</source> |
89 | 79 | <target>17</target> |
| 80 | + <release>17</release> |
90 | 81 | </configuration> |
91 | 82 | </plugin> |
92 | 83 | <plugin> |
93 | 84 | <!-- Calculating the test coverage --> |
94 | 85 | <groupId>org.jacoco</groupId> |
95 | 86 | <artifactId>jacoco-maven-plugin</artifactId> |
96 | | - <version>0.8.12</version> |
| 87 | + <version>0.8.14</version> |
97 | 88 | <executions> |
98 | 89 | <execution> |
99 | 90 | <id>pre-unit-test</id> |
|
117 | 108 | <plugin> |
118 | 109 | <groupId>org.apache.maven.plugins</groupId> |
119 | 110 | <artifactId>maven-surefire-plugin</artifactId> |
120 | | - <version>3.5.2</version> |
| 111 | + <version>3.5.4</version> |
121 | 112 | <configuration> |
122 | 113 | <!-- Sets the VM argument line as defined by the JaCoCo plugin. --> |
123 | 114 | <argLine>${jacocoAgentArgLine}</argLine> |
|
133 | 124 | <plugin> |
134 | 125 | <groupId>org.apache.maven.plugins</groupId> |
135 | 126 | <artifactId>maven-enforcer-plugin</artifactId> |
136 | | - <version>3.5.0</version> |
| 127 | + <version>3.6.2</version> |
137 | 128 | <dependencies> |
138 | 129 | <dependency> |
139 | 130 | <groupId>org.codehaus.mojo</groupId> |
140 | 131 | <artifactId>extra-enforcer-rules</artifactId> |
141 | | - <version>1.9.0</version> |
| 132 | + <version>1.11.0</version> |
142 | 133 | </dependency> |
143 | 134 | </dependencies> |
144 | 135 | <executions> |
|
154 | 145 | </requireMavenVersion> |
155 | 146 | <requireJavaVersion> |
156 | 147 | <!-- http://maven.apache.org/enforcer/enforcer-rules/versionRanges.html --> |
157 | | - <version>[17,21)</version> |
| 148 | + <version>[17,22)</version> |
158 | 149 | </requireJavaVersion> |
159 | 150 | <!-- <requirePluginVersions> <message>Best Practice is to |
160 | 151 | always define plugin versions!</message> <banLatest>true</banLatest> <banRelease>true</banRelease> |
|
200 | 191 | <plugin> |
201 | 192 | <groupId>org.apache.maven.plugins</groupId> |
202 | 193 | <artifactId>maven-jar-plugin</artifactId> |
203 | | - <version>3.4.2</version> |
| 194 | + <version>3.5.0</version> |
204 | 195 | </plugin> |
205 | 196 | <plugin> |
206 | 197 | <groupId>org.apache.maven.plugins</groupId> |
207 | 198 | <artifactId>maven-clean-plugin</artifactId> |
208 | | - <version>3.4.0</version> |
| 199 | + <version>3.5.0</version> |
209 | 200 | </plugin> |
210 | 201 | <plugin> |
211 | 202 | <groupId>org.apache.maven.plugins</groupId> |
212 | 203 | <artifactId>maven-install-plugin</artifactId> |
213 | | - <version>3.1.3</version> |
| 204 | + <version>3.1.4</version> |
214 | 205 | </plugin> |
215 | 206 | <plugin> |
216 | 207 | <groupId>org.apache.maven.plugins</groupId> |
|
225 | 216 | <plugin> |
226 | 217 | <groupId>org.apache.maven.plugins</groupId> |
227 | 218 | <artifactId>maven-deploy-plugin</artifactId> |
228 | | - <version>3.1.3</version> |
| 219 | + <version>3.1.4</version> |
229 | 220 | </plugin> |
230 | 221 | <plugin> |
231 | 222 | <groupId>org.apache.maven.plugins</groupId> |
232 | 223 | <artifactId>maven-javadoc-plugin</artifactId> |
233 | | - <version>3.11.2</version> |
| 224 | + <version>3.12.0</version> |
234 | 225 | </plugin> |
235 | 226 | </plugins> |
236 | 227 | </pluginManagement> |
|
412 | 403 | <plugin> |
413 | 404 | <groupId>org.sonatype.central</groupId> |
414 | 405 | <artifactId>central-publishing-maven-plugin</artifactId> |
415 | | - <version>0.7.0</version> |
| 406 | + <version>0.9.0</version> |
416 | 407 | <extensions>true</extensions> |
417 | 408 | <configuration> |
418 | 409 | <publishingServerId>central</publishingServerId> |
|
456 | 447 | <plugin> |
457 | 448 | <groupId>org.apache.maven.plugins</groupId> |
458 | 449 | <artifactId>maven-gpg-plugin</artifactId> |
459 | | - <version>3.2.6</version> |
| 450 | + <version>3.2.8</version> |
460 | 451 | <executions> |
461 | 452 | <execution> |
462 | 453 | <id>sign-artifacts</id> |
|
0 commit comments