change to jakarta.mail
This commit is contained in:
71
pom.xml
71
pom.xml
@ -79,24 +79,36 @@ limitations under the License.
|
||||
<maven.compiler.release>17</maven.compiler.release>
|
||||
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<slf4j.version>2.0.6</slf4j.version>
|
||||
<jackson.version>2.14.2</jackson.version>
|
||||
<lombok.version>1.18.26</lombok.version>
|
||||
<junit.version>5.9.2</junit.version>
|
||||
<slf4j.version>2.0.12</slf4j.version>
|
||||
<jackson.version>2.16.1</jackson.version>
|
||||
<lombok.version>1.18.30</lombok.version>
|
||||
<junit.version>5.10.2</junit.version>
|
||||
|
||||
<poi.version>5.2.3</poi.version>
|
||||
<commons-net.version>3.9.0</commons-net.version>
|
||||
<commons-lang.version>3.12.0</commons-lang.version>
|
||||
<poi.version>5.2.5</poi.version>
|
||||
<commons-net.version>3.10.0</commons-net.version>
|
||||
<commons-lang.version>3.14.0</commons-lang.version>
|
||||
<gson.version>2.10.1</gson.version>
|
||||
<fusionauth.version>5.2.2</fusionauth.version>
|
||||
<fusionauth.version>5.3.1</fusionauth.version>
|
||||
<bouncycastle.version>1.70</bouncycastle.version>
|
||||
<hibernate.version>6.1.7.Final</hibernate.version>
|
||||
<com-sun-mail.version>1.6.2</com-sun-mail.version>
|
||||
<jakarta.mail-api.version>2.1.2</jakarta.mail-api.version>
|
||||
<ews-java-api.version>2.0</ews-java-api.version>
|
||||
<scrypt.version>1.4.0</scrypt.version>
|
||||
|
||||
<jakarta-faces.version>4.0.4</jakarta-faces.version>
|
||||
<joinfaces.version>5.1.4</joinfaces.version>
|
||||
<jakarta-faces.version>4.0.5</jakarta-faces.version>
|
||||
<joinfaces.version>5.1.8</joinfaces.version>
|
||||
<jakarta.interceptor-api.version>2.1.0</jakarta.interceptor-api.version>
|
||||
<jakarta-inject-api.version>2.0.0</jakarta-inject-api.version>
|
||||
<jakarta-inject-api.version>2.0.1</jakarta-inject-api.version>
|
||||
|
||||
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
|
||||
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
|
||||
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
|
||||
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
|
||||
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
|
||||
<maven-dependency-plugin.version>3.6.1</maven-dependency-plugin.version>
|
||||
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
|
||||
<license-maven-plugin.version>1.14</license-maven-plugin.version>
|
||||
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
@ -156,14 +168,15 @@ limitations under the License.
|
||||
|
||||
<!-- mail -->
|
||||
<dependency>
|
||||
<artifactId>javax.mail</artifactId>
|
||||
<groupId>com.sun.mail</groupId>
|
||||
<version>${com-sun-mail.version}</version>
|
||||
<groupId>jakarta.mail</groupId>
|
||||
<artifactId>jakarta.mail-api</artifactId>
|
||||
<version>${jakarta.mail-api.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<artifactId>ews-java-api</artifactId>
|
||||
<groupId>com.microsoft.ews-java-api</groupId>
|
||||
<version>2.0</version>
|
||||
<version>${ews-java-api.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Faces -->
|
||||
@ -210,7 +223,7 @@ limitations under the License.
|
||||
<dependency>
|
||||
<artifactId>scrypt</artifactId>
|
||||
<groupId>com.lambdaworks</groupId>
|
||||
<version>1.4.0</version>
|
||||
<version>${scrypt.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>bcprov-jdk15on</artifactId>
|
||||
@ -267,7 +280,7 @@ limitations under the License.
|
||||
</configuration>
|
||||
<extensions>true</extensions>
|
||||
<groupId>org.sonatype.plugins</groupId>
|
||||
<version>1.6.8</version>
|
||||
<version>${nexus-staging-maven-plugin.version}</version>
|
||||
</plugin>
|
||||
|
||||
<!-- ensure sources are build so they are also uploaded -->
|
||||
@ -297,7 +310,7 @@ limitations under the License.
|
||||
</execution>
|
||||
</executions>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<version>3.1.1</version>
|
||||
<version>${maven-javadoc-plugin.version}</version>
|
||||
</plugin>
|
||||
|
||||
<!-- create license file -->
|
||||
@ -321,7 +334,7 @@ limitations under the License.
|
||||
</execution>
|
||||
</executions>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<version>1.14</version>
|
||||
<version>${license-maven-plugin.version}</version>
|
||||
</plugin>
|
||||
|
||||
<!-- sign jar archives -->
|
||||
@ -340,7 +353,7 @@ limitations under the License.
|
||||
</execution>
|
||||
</executions>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<version>1.6</version>
|
||||
<version>${maven-gpg-plugin.version}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
@ -360,27 +373,20 @@ limitations under the License.
|
||||
<target>${maven.compiler.target}</target>
|
||||
</configuration>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<version>3.8.1</version>
|
||||
</plugin>
|
||||
|
||||
<!-- build maven ejb artifacts -->
|
||||
<plugin>
|
||||
<artifactId>maven-ejb-plugin</artifactId>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<version>3.0.1</version>
|
||||
<version>${maven-compiler-plugin.version}</version>
|
||||
</plugin>
|
||||
|
||||
<!-- create new releases -->
|
||||
<plugin>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.3</version>
|
||||
<version>${maven-release-plugin.version}</version>
|
||||
</plugin>
|
||||
|
||||
<!-- control junit tests from maven build -->
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<version>2.22.2</version>
|
||||
<version>${maven-surefire-plugin.version}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
@ -397,7 +403,6 @@ limitations under the License.
|
||||
<configuration>
|
||||
<tagNameFormat>v@{project.version}</tagNameFormat>
|
||||
</configuration>
|
||||
<version>2.5.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
@ -407,7 +412,7 @@ limitations under the License.
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>3.6.1</version>
|
||||
<version>${maven-dependency-plugin.version}</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
Reference in New Issue
Block a user