feat: add mime validator

This commit is contained in:
2025-12-03 19:07:39 +01:00
parent 376242fb9a
commit 17687916c9
14 changed files with 511 additions and 4 deletions

10
pom.xml
View File

@@ -54,6 +54,11 @@
<artifactId>mariadb-java-client</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
@@ -92,6 +97,11 @@
<artifactId>thumbnailator</artifactId>
<version>0.4.20</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>2.9.1</version>
</dependency>
</dependencies>