Skip to content

Commit d09e642

Browse files
committed
Merge branch 'refs/heads/develop'
2 parents 04a91b9 + 080c5df commit d09e642

File tree

55 files changed

+369
-379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+369
-379
lines changed

modules/authenticated-socks-module/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
<parent>
88
<groupId>org.simplejavamail</groupId>
99
<artifactId>maven-master-project</artifactId>
10-
<!--suppress MavenPropertyInParent -->
1110
<version>8.8.4</version>
12-
<relativePath>../../</relativePath>
11+
<relativePath>../../pom.xml</relativePath>
1312
</parent>
1413

1514
<artifactId>authenticated-socks-module</artifactId>

modules/batch-module/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
<parent>
88
<groupId>org.simplejavamail</groupId>
99
<artifactId>maven-master-project</artifactId>
10-
<!--suppress MavenPropertyInParent -->
1110
<version>8.8.4</version>
12-
<relativePath>../../</relativePath>
11+
<relativePath>../../pom.xml</relativePath>
1312
</parent>
1413

1514
<artifactId>batch-module</artifactId>

modules/cli-module/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
<parent>
88
<groupId>org.simplejavamail</groupId>
99
<artifactId>maven-master-project</artifactId>
10-
<!--suppress MavenPropertyInParent -->
1110
<version>8.8.4</version>
12-
<relativePath>../../</relativePath>
11+
<relativePath>../../pom.xml</relativePath>
1312
</parent>
1413

1514
<artifactId>cli-module</artifactId>

modules/cli-module/src/test/java/org/simplejavamail/api/internal/clisupport/model/CliBuilderApiTypeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.simplejavamail.api.internal.clisupport.model;
22

3-
import org.junit.Test;
3+
import org.junit.jupiter.api.Test;
44

55
import static org.assertj.core.api.Assertions.assertThat;
66
import static org.simplejavamail.api.internal.clisupport.model.CliBuilderApiType.EMAIL;

modules/cli-module/src/test/java/org/simplejavamail/internal/clisupport/BuilderApiToPicocliCommandsMapperTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.simplejavamail.internal.clisupport;
22

3-
import org.junit.Test;
3+
import org.junit.jupiter.api.Test;
44

55
import java.util.ArrayList;
66
import java.util.List;

modules/cli-module/src/test/java/org/simplejavamail/internal/clisupport/CliCommandLineConsumerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import org.bbottema.javareflection.ClassUtils;
44
import org.bbottema.javareflection.model.MethodModifier;
55
import org.jetbrains.annotations.Nullable;
6-
import org.junit.Test;
6+
import org.junit.jupiter.api.Test;
77

88
import java.lang.reflect.Method;
99
import java.util.ArrayList;

modules/cli-module/src/test/java/org/simplejavamail/internal/clisupport/CliDeclaredOptionSpecTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package org.simplejavamail.internal.clisupport;
22

33
import org.jetbrains.annotations.NotNull;
4-
import org.junit.Test;
4+
import org.junit.jupiter.api.Test;
55
import org.simplejavamail.api.internal.clisupport.model.CliDeclaredOptionSpec;
66

77
import java.lang.reflect.Method;

modules/cli-module/src/test/java/org/simplejavamail/internal/clisupport/GenerateCliHelpTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package org.simplejavamail.internal.clisupport;
22

3-
import org.junit.After;
4-
import org.junit.Before;
5-
import org.junit.Test;
3+
import org.junit.jupiter.api.AfterEach;
4+
import org.junit.jupiter.api.BeforeEach;
5+
import org.junit.jupiter.api.Test;
66

77
import java.io.ByteArrayOutputStream;
88
import java.io.PrintStream;
@@ -12,14 +12,14 @@ public class GenerateCliHelpTest {
1212
private PrintStream sysOut;
1313
private final ByteArrayOutputStream outContent = new ByteArrayOutputStream();
1414

15-
@Before
15+
@BeforeEach
1616
public void setUpStreams() {
1717
System.out.println("GenerateCliHelpTest.setUpStreams(): DISABLING System.out during CLI debug logging");
1818
sysOut = System.out;
1919
System.setOut(new PrintStream(outContent));
2020
}
2121

22-
@After
22+
@AfterEach
2323
public void revertStreams() {
2424
System.setOut(sysOut);
2525
}

modules/core-module/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
<parent>
88
<groupId>org.simplejavamail</groupId>
99
<artifactId>maven-master-project</artifactId>
10-
<!--suppress MavenPropertyInParent -->
1110
<version>8.8.4</version>
12-
<relativePath>../../</relativePath>
11+
<relativePath>../../pom.xml</relativePath>
1312
</parent>
1413

1514
<artifactId>core-module</artifactId>

modules/core-test-module/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
<parent>
88
<groupId>org.simplejavamail</groupId>
99
<artifactId>maven-master-project</artifactId>
10-
<!--suppress MavenPropertyInParent -->
1110
<version>8.8.4</version>
12-
<relativePath>../../</relativePath>
11+
<relativePath>../../pom.xml</relativePath>
1312
</parent>
1413

1514
<artifactId>core-test-module</artifactId>
@@ -37,12 +36,12 @@
3736
<dependency>
3837
<groupId>commons-io</groupId>
3938
<artifactId>commons-io</artifactId>
40-
<version>2.7</version>
39+
<version>2.11.0</version>
4140
</dependency>
4241
<dependency>
4342
<groupId>org.assertj</groupId>
4443
<artifactId>assertj-core</artifactId>
45-
<version>3.21.0</version>
44+
<scope>compile</scope>
4645
</dependency>
4746
</dependencies>
4847
</project>

0 commit comments

Comments
 (0)