File tree 9 files changed +17
-21
lines changed
main/java/org/simplejavamail/converter/internal/mimemessage
test/java/org/simplejavamail/converter/internal/mimemessage
9 files changed +17
-21
lines changed Original file line number Diff line number Diff line change 34
34
<dependency >
35
35
<groupId >org.simplejavamail</groupId >
36
36
<artifactId >smtp-connection-pool</artifactId >
37
- <version >2.2 .0</version >
37
+ <version >2.3 .0</version >
38
38
</dependency >
39
39
</dependencies >
40
40
</project >
Original file line number Diff line number Diff line change 45
45
46
46
<!-- core dependencies -->
47
47
<dependency >
48
- <groupId >com.sun .mail</groupId >
49
- <artifactId >jakarta.mail</artifactId >
50
- <version >2.0.1 </version >
48
+ <groupId >jakarta .mail</groupId >
49
+ <artifactId >jakarta.mail-api </artifactId >
50
+ <version >2.1.2 </version >
51
51
</dependency >
52
52
<dependency >
53
- <groupId >com.sun.activation</groupId >
54
- <artifactId >jakarta.activation</artifactId >
55
- <version >2.0.1</version >
53
+ <groupId >org.eclipse.angus</groupId >
54
+ <artifactId >angus-mail</artifactId >
55
+ <version >2.0.2</version >
56
+ <scope >runtime</scope >
56
57
</dependency >
57
58
58
59
<dependency ><!-- email validation framework -->
Original file line number Diff line number Diff line change 34
34
<dependency >
35
35
<groupId >org.simplejavamail</groupId >
36
36
<artifactId >utils-mail-dkim</artifactId >
37
- <version >3.0 .0</version >
37
+ <version >3.1 .0</version >
38
38
</dependency >
39
39
</dependencies >
40
40
</project >
Original file line number Diff line number Diff line change 80
80
<dependency ><!-- SMTP test server -->
81
81
<groupId >com.github.davidmoten</groupId >
82
82
<artifactId >subethasmtp</artifactId >
83
- <version >6.0.1 </version >
83
+ <version >6.0.7 </version >
84
84
<scope >test</scope >
85
85
</dependency >
86
86
<!-- required for java 9+ compatibility with assertj-assertions-generator-maven-plugin, which uses javax.annotation.Generated -->
Original file line number Diff line number Diff line change 1
1
package org .simplejavamail .converter .internal .mimemessage ;
2
2
3
- import com . sun .mail .smtp .SMTPMessage ;
3
+ import org . eclipse . angus .mail .smtp .SMTPMessage ;
4
4
import jakarta .activation .DataHandler ;
5
5
import jakarta .mail .Address ;
6
6
import jakarta .mail .Flags ;
Original file line number Diff line number Diff line change 1
1
package org .simplejavamail .converter .internal .mimemessage ;
2
2
3
- import com . sun .mail .handlers .text_plain ;
3
+ import org . eclipse . angus .mail .handlers .text_plain ;
4
4
import jakarta .activation .ActivationDataFlavor ;
5
5
import jakarta .activation .CommandMap ;
6
6
import jakarta .activation .DataHandler ;
@@ -719,7 +719,7 @@ public Date getSentDate() {
719
719
}
720
720
721
721
/**
722
- * DataContentHandler for text/calendar, based on {@link com.sun .mail.handlers.text_html}.
722
+ * DataContentHandler for text/calendar, based on {@link org.eclipse.angus .mail.handlers.text_html}.
723
723
* <p>
724
724
* The unfortunate class name matches Java Mail's handler naming convention.
725
725
*/
Original file line number Diff line number Diff line change 1
1
package org .simplejavamail .converter .internal .mimemessage ;
2
2
3
- import com . sun .mail .smtp .SMTPMessage ;
3
+ import org . eclipse . angus .mail .smtp .SMTPMessage ;
4
4
import jakarta .activation .DataHandler ;
5
5
import jakarta .mail .Address ;
6
6
import jakarta .mail .Flags ;
Original file line number Diff line number Diff line change 34
34
<dependency >
35
35
<groupId >org.simplejavamail</groupId >
36
36
<artifactId >utils-mail-smime</artifactId >
37
- <version >2.2 .0</version >
37
+ <version >2.3 .0</version >
38
38
</dependency >
39
39
</dependencies >
40
40
</project >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >com.github.bbottema</groupId >
8
8
<artifactId >modular-project-parent</artifactId >
9
- <version >1.0.21 </version >
9
+ <version >1.0.23 </version >
10
10
</parent >
11
11
12
12
<groupId >org.simplejavamail</groupId >
106
106
<dependency >
107
107
<groupId >org.slf4j</groupId >
108
108
<artifactId >slf4j-api</artifactId >
109
- <version >1.7.32 </version >
109
+ <version >1.7.36 </version >
110
110
</dependency >
111
111
<dependency >
112
112
<groupId >com.google.code.findbugs</groupId >
128
128
<artifactId >junit</artifactId >
129
129
<version >4.13.2</version >
130
130
</dependency >
131
- <dependency >
132
- <groupId >jakarta.activation</groupId >
133
- <artifactId >jakarta.activation-api</artifactId >
134
- <version >2.0.1</version >
135
- </dependency >
136
131
</dependencies >
137
132
</dependencyManagement >
138
133
You can’t perform that action at this time.
0 commit comments