How to install the Java artifact com.sun.mail.pop3 with Maven
Java
Maven
pom.xml
com.sun.mail
pop3
Add the following lines to your pom.xml within the <project> element. Refer to the documentation to find the latest version available.
<dependencies>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>pop3</artifactId>
<version>2.0.0</version>
</dependency>
/dependencies>