Skip to content

Commit eb9d638

Browse files
committed
feat(deps): update dependencies
1 parent f87e2ec commit eb9d638

3 files changed

Lines changed: 23 additions & 25 deletions

File tree

pom.xml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -52,38 +52,38 @@
5252
<zip4j.version>2.11.5</zip4j.version>
5353
<slf4j.version>2.0.17</slf4j.version>
5454

55-
<poi.version>5.4.1</poi.version>
55+
<poi.version>5.5.0</poi.version>
5656
<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>
57+
<commons.io.version>2.21.0</commons.io.version>
58+
<commons-compress.version>1.28.0</commons-compress.version>
5959
<opennlp-tools.version>1.9.3</opennlp-tools.version>
6060

61-
<pdfbox.version>3.0.5</pdfbox.version>
61+
<pdfbox.version>3.0.6</pdfbox.version>
6262

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>
63+
<jaxb-api.version>4.0.4</jaxb-api.version>
64+
<jaxb-core.version>4.0.6</jaxb-core.version>
65+
<jaxb-impl.version>4.0.6</jaxb-impl.version>
6666

6767
<!-- testing -->
6868
<junit.version>5.11.4</junit.version>
6969
<hamcrest.version>3.0</hamcrest.version>
7070
<jmock-junit5.version>2.13.1</jmock-junit5.version>
71-
<log4j.version>2.24.3</log4j.version>
71+
<log4j.version>2.25.2</log4j.version>
7272

7373
<!-- sonarcloud -->
7474
<sonar.projectKey>levigo_filetype-analyzer</sonar.projectKey>
7575
<sonar.organization>levigo</sonar.organization>
7676
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
7777

78-
<bouncycastle.version>1.80</bouncycastle.version>
78+
<bouncycastle.version>1.82</bouncycastle.version>
7979
</properties>
8080

8181
<build>
8282
<plugins>
8383
<plugin>
8484
<groupId>org.apache.maven.plugins</groupId>
8585
<artifactId>maven-compiler-plugin</artifactId>
86-
<version>3.13.0</version>
86+
<version>3.14.1</version>
8787
<configuration>
8888
<source>17</source>
8989
<target>17</target>
@@ -93,7 +93,7 @@
9393
<!-- Calculating the test coverage -->
9494
<groupId>org.jacoco</groupId>
9595
<artifactId>jacoco-maven-plugin</artifactId>
96-
<version>0.8.12</version>
96+
<version>0.8.14</version>
9797
<executions>
9898
<execution>
9999
<id>pre-unit-test</id>
@@ -117,7 +117,7 @@
117117
<plugin>
118118
<groupId>org.apache.maven.plugins</groupId>
119119
<artifactId>maven-surefire-plugin</artifactId>
120-
<version>3.5.2</version>
120+
<version>3.5.4</version>
121121
<configuration>
122122
<!-- Sets the VM argument line as defined by the JaCoCo plugin. -->
123123
<argLine>${jacocoAgentArgLine}</argLine>
@@ -133,12 +133,12 @@
133133
<plugin>
134134
<groupId>org.apache.maven.plugins</groupId>
135135
<artifactId>maven-enforcer-plugin</artifactId>
136-
<version>3.5.0</version>
136+
<version>3.6.2</version>
137137
<dependencies>
138138
<dependency>
139139
<groupId>org.codehaus.mojo</groupId>
140140
<artifactId>extra-enforcer-rules</artifactId>
141-
<version>1.9.0</version>
141+
<version>1.11.0</version>
142142
</dependency>
143143
</dependencies>
144144
<executions>
@@ -200,17 +200,17 @@
200200
<plugin>
201201
<groupId>org.apache.maven.plugins</groupId>
202202
<artifactId>maven-jar-plugin</artifactId>
203-
<version>3.4.2</version>
203+
<version>3.5.0</version>
204204
</plugin>
205205
<plugin>
206206
<groupId>org.apache.maven.plugins</groupId>
207207
<artifactId>maven-clean-plugin</artifactId>
208-
<version>3.4.0</version>
208+
<version>3.5.0</version>
209209
</plugin>
210210
<plugin>
211211
<groupId>org.apache.maven.plugins</groupId>
212212
<artifactId>maven-install-plugin</artifactId>
213-
<version>3.1.3</version>
213+
<version>3.1.4</version>
214214
</plugin>
215215
<plugin>
216216
<groupId>org.apache.maven.plugins</groupId>
@@ -225,12 +225,12 @@
225225
<plugin>
226226
<groupId>org.apache.maven.plugins</groupId>
227227
<artifactId>maven-deploy-plugin</artifactId>
228-
<version>3.1.3</version>
228+
<version>3.1.4</version>
229229
</plugin>
230230
<plugin>
231231
<groupId>org.apache.maven.plugins</groupId>
232232
<artifactId>maven-javadoc-plugin</artifactId>
233-
<version>3.11.2</version>
233+
<version>3.12.0</version>
234234
</plugin>
235235
</plugins>
236236
</pluginManagement>
@@ -412,7 +412,7 @@
412412
<plugin>
413413
<groupId>org.sonatype.central</groupId>
414414
<artifactId>central-publishing-maven-plugin</artifactId>
415-
<version>0.7.0</version>
415+
<version>0.9.0</version>
416416
<extensions>true</extensions>
417417
<configuration>
418418
<publishingServerId>central</publishingServerId>
@@ -456,7 +456,7 @@
456456
<plugin>
457457
<groupId>org.apache.maven.plugins</groupId>
458458
<artifactId>maven-gpg-plugin</artifactId>
459-
<version>3.2.6</version>
459+
<version>3.2.8</version>
460460
<executions>
461461
<execution>
462462
<id>sign-artifacts</id>

src/main/java/org/jadice/filetype/matchers/TextMatcher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,10 @@ private float countCharacters(final String text, final Context context) {
160160
|| Character.isIdentifierIgnorable(c) //
161161
|| Character.isSpaceChar(c) //
162162
|| Character.isWhitespace(c)) {
163-
LOGGER.debug("Recognized char '{}' @ {}", c, i);
163+
LOGGER.trace("Recognized char '{}' @ {}", c, i);
164164
defined++;
165165
} else if (PUNCTUATION.contains(c)) {
166-
LOGGER.debug("Ignoring punctuation char '{}' @ {}", c, i);
166+
LOGGER.trace("Ignoring punctuation char '{}' @ {}", c, i);
167167
ignored++;
168168
}
169169
}

src/test/java/TestHeicImages.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ void testHeicFiles() throws IOException {
3030
final Map<String, Object> result = analyzer.analyze(f);
3131
assertNotNull(result, f + " could not be analyzed");
3232
assertEquals("image/heic", result.get(MimeTypeAction.KEY), f + " is not recognized as heic");
33-
3433
}
3534
}
3635

@@ -40,7 +39,6 @@ void testNonHeicFiles() throws IOException {
4039
final Map<String, Object> result = analyzer.analyze(f);
4140
assertNotNull(result, f + " could not be analyzed");
4241
assertNotEquals("image/heic", result.get(MimeTypeAction.KEY), "false positive: " + f + " is recognized as heic");
43-
4442
}
4543
}
4644

0 commit comments

Comments
 (0)