Update to Java mail 1.5.4

This commit is contained in:
Jan Dittberner 2015-10-20 18:00:29 +02:00
parent b009be3e17
commit 13297bbe19
2 changed files with 10 additions and 5 deletions

View file

@ -12,7 +12,8 @@ repositories {
dependencies { dependencies {
compile group: 'org.bouncycastle', name: 'bcmail-jdk15on', version: '1.53' compile group: 'org.bouncycastle', name: 'bcmail-jdk15on', version: '1.53'
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.53' compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.53'
compile group: 'javax.mail', name: 'mail', version: '1.4.4' compile group: 'javax.mail', name: 'javax.mail-api', version: '1.5.4'
compile group: 'com.sun.mail', name: 'javax.mail', version: '1.5.4'
testCompile group: 'junit', name: 'junit', version: '4.12' testCompile group: 'junit', name: 'junit', version: '4.12'
} }

12
pom.xml
View file

@ -63,10 +63,14 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
<version>1.53</version> <version>1.53</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>javax.mail</groupId> <groupId>javax.mail</groupId>
<artifactId>mail</artifactId> <artifactId>javax.mail-api</artifactId>
<version>1.4.4</version> <version>1.5.4</version>
<scope>compile</scope> </dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.5.4</version>
</dependency> </dependency>
</dependencies> </dependencies>