Skip to content
Snippets Groups Projects
Commit 82001f0b authored by Piotr Gawron's avatar Piotr Gawron
Browse files

missing dependency added

parent 822c92a3
No related branches found
No related tags found
3 merge requests!1700Resolve "introduce new frontend to the jar file build process",!1659Resolve "Project fails to initialise",!1658Resolve "cache_type has invalid entry"
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
......@@ -140,6 +139,20 @@
<version>${mail-version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.sun.mail/jakarta.mail -->
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>jakarta.mail</artifactId>
<version>${mail-version}</version>
<exclusions>
<exclusion>
<groupId>com.sun.activation</groupId>
<artifactId>jakarta.activation</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- mockito used for testing -->
<dependency>
<groupId>org.mockito</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment