Update to Java mail 1.5.4
This commit is contained in:
parent
b009be3e17
commit
13297bbe19
2 changed files with 10 additions and 5 deletions
|
@ -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'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
10
pom.xml
10
pom.xml
|
@ -64,9 +64,13 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
</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>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue