Skip to content

Commit ba052e5

Browse files
committed
Merge branch 'refs/heads/develop'
# Conflicts: # modules/outlook-module/pom.xml
2 parents a3a7a54 + 0fac5c3 commit ba052e5

File tree

9 files changed

+39
-23
lines changed

9 files changed

+39
-23
lines changed

modules/batch-module/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>org.simplejavamail</groupId>
3535
<artifactId>smtp-connection-pool</artifactId>
36-
<version>2.3.1</version>
36+
<version>2.3.2</version>
3737
</dependency>
3838
</dependencies>
3939
</project>

modules/cli-module/pom.xml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>com.github.bbottema</groupId>
3434
<artifactId>java-reflection</artifactId>
35-
<version>4.1.0</version>
35+
<version>4.0.2</version>
3636
</dependency>
3737

3838
<!-- needed for cli support -->
@@ -46,7 +46,7 @@
4646
<dependency><!-- Runtime library -->
4747
<groupId>com.github.therapi</groupId>
4848
<artifactId>therapi-runtime-javadoc</artifactId>
49-
<version>0.13.0</version>
49+
<version>0.15.0</version>
5050
</dependency>
5151

5252
<!-- dependencies that should be included in the assembly for the stand-alone jar -->
@@ -90,14 +90,20 @@
9090
<dependency>
9191
<groupId>com.esotericsoftware</groupId>
9292
<artifactId>kryo</artifactId>
93-
<version>5.0.0-RC1</version>
93+
<version>5.6.0</version>
9494
<scope>compile</scope>
9595
</dependency>
9696
<dependency><!-- adds support for deserializing UnmodifiableCollection -->
9797
<groupId>de.javakaffee</groupId>
9898
<artifactId>kryo-serializers</artifactId>
9999
<version>0.45</version>
100100
<scope>compile</scope>
101+
<exclusions>
102+
<exclusion>
103+
<groupId>com.esotericsoftware</groupId>
104+
<artifactId>kryo</artifactId>
105+
</exclusion>
106+
</exclusions>
101107
</dependency>
102108

103109
<!-- Logging -->
@@ -189,7 +195,7 @@
189195
<plugin>
190196
<groupId>org.apache.maven.plugins</groupId>
191197
<artifactId>maven-assembly-plugin</artifactId>
192-
<version>3.1.0</version>
198+
<version>3.7.1</version>
193199
<configuration>
194200
<descriptors>
195201
<descriptor>src/assembly/standalone-cli-descriptor.xml</descriptor>
-60.1 KB
Binary file not shown.
Binary file not shown.

modules/cli-module/src/test/java/demo/CliDemoApp.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ public static void main(String[] args) {
2525

2626
demoTestConnection(serverConfig);
2727
demoSend(serverConfig);
28-
demoSendAsync(serverConfig);
2928
demoSendUsingFileAsHTMLBody(serverConfig);
3029
}
3130

@@ -49,18 +48,6 @@ private static void demoSend(ServerConfig serverConfig) {
4948
});
5049
}
5150

52-
private static void demoSendAsync(ServerConfig serverConfig) {
53-
CliSupport.runCLI(new String[]{
54-
"send",
55-
"--email:forwarding", SOURCE_FOLDER + "/test/resources/test-messages/HTML mail with replyto and attachment and embedded image.msg",
56-
"--email:from", "Test sender", DemoAppBase.YOUR_GMAIL_ADDRESS,
57-
"--email:to", "Test Receiver", DemoAppBase.YOUR_GMAIL_ADDRESS,
58-
"--mailer:async",
59-
"--mailer:withSMTPServer", "smtp.gmail.com", "587", serverConfig.getUsername(), serverConfig.getPassword(),
60-
"--mailer:withTransportStrategy", "SMTP_TLS"
61-
});
62-
}
63-
6451
private static void demoSendUsingFileAsHTMLBody(ServerConfig serverConfig) {
6552
CliSupport.runCLI(new String[]{
6653
"send",

modules/core-module/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,10 @@
4646
<dependency>
4747
<groupId>jakarta.mail</groupId>
4848
<artifactId>jakarta.mail-api</artifactId>
49-
<version>2.1.2</version>
5049
</dependency>
5150
<dependency>
5251
<groupId>org.eclipse.angus</groupId>
5352
<artifactId>angus-mail</artifactId>
54-
<version>2.0.2</version>
5553
<scope>runtime</scope>
5654
</dependency>
5755

modules/core-test-module/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>commons-io</groupId>
3838
<artifactId>commons-io</artifactId>
39-
<version>2.11.0</version>
39+
<version>2.16.1</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.assertj</groupId>

modules/dkim-module/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>org.simplejavamail</groupId>
3535
<artifactId>utils-mail-dkim</artifactId>
36-
<version>3.1.0</version>
36+
<version>3.2.0</version>
3737
</dependency>
3838
</dependencies>
3939
</project>

pom.xml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.bbottema</groupId>
88
<artifactId>modular-project-parent</artifactId>
9-
<version>1.0.30</version>
9+
<version>1.0.33</version>
1010
</parent>
1111

1212
<groupId>org.simplejavamail</groupId>
@@ -96,6 +96,31 @@
9696
<artifactId>jsr305</artifactId>
9797
<version>3.0.2</version>
9898
</dependency>
99+
<dependency>
100+
<groupId>jakarta.mail</groupId>
101+
<artifactId>jakarta.mail-api</artifactId>
102+
<version>2.1.3</version>
103+
</dependency>
104+
<dependency>
105+
<groupId>jakarta.activation</groupId>
106+
<artifactId>jakarta.activation-api</artifactId>
107+
<version>2.1.3</version>
108+
</dependency>
109+
<dependency>
110+
<groupId>commons-io</groupId>
111+
<artifactId>commons-io</artifactId>
112+
<version>2.16.1</version>
113+
</dependency>
114+
<dependency>
115+
<groupId>org.eclipse.angus</groupId>
116+
<artifactId>angus-mail</artifactId>
117+
<version>2.0.3</version>
118+
</dependency>
119+
<dependency>
120+
<groupId>org.slf4j</groupId>
121+
<artifactId>slf4j-api</artifactId>
122+
<version>2.0.9</version>
123+
</dependency>
99124
</dependencies>
100125
</dependencyManagement>
101126

0 commit comments

Comments
 (0)