-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate all code and dependencies to Java21 from Java 17. Remove unnecessary .jar's and amend deprecated API calls.
- Loading branch information
Showing
10 changed files
with
149 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
b6sftpSend/.settings/org.eclipse.wst.common.project.facet.core.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<faceted-project> | ||
<runtime name="Java 17 JDK"/> | ||
<installed facet="java" version="17"/> | ||
<runtime name="Java 21 JDK"/> | ||
<installed facet="java" version="21"/> | ||
</faceted-project> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,95 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<emailSettings> | ||
<!-- Example Version--> | ||
<!-- The section called "configuration" is always the active one - rename as appropriate--> | ||
<!-- SMTP No Authentication Example --> | ||
<configuration2> | ||
<property name="mail.smtp.starttls.enable" encrypted="no" value="false"/> | ||
<property name="mail.smtp.host" encrypted="no" value="smtp.demo.com"/> | ||
<property name="mail.smtp.socketFactory.port" encrypted="no" value="25"/> | ||
<property name="mail.smtp.user" encrypted="no" value="demo@email.com"/> | ||
<property name="mail.smtp.password" encrypted="no" value=""/> | ||
<property name="mail.smtp.socketFactory.class" encrypted="no" value="javax.net.ssl.SSLSocketFactory"/> | ||
<property name="mail.smtp.auth" encrypted="no" value="false"/> | ||
<property name="mail.smtp.port" encrypted="no" value="25"/> | ||
<property name="mail.smtp.from" encrypted="no" value="demo@email.com"/> | ||
<property name="mail.debug" encrypted="no" value="true"/> | ||
</configuration2> | ||
<!-- Microsoft smtp.live.com Example --> | ||
<configuration> | ||
<property name="mail.smtp.auth" encrypted="no" value="true"/> | ||
<property name="mail.smtp.starttls.enable" encrypted="no" value="true"/> | ||
<property name="mail.smtp.host" encrypted="no" value="smtp.live.com"/> | ||
<property name="mail.smtp.socketFactory.port" encrypted="no" value="25"/> | ||
<property name="mail.smtp.user" encrypted="no" value="email@outlook.com"/> | ||
<property name="mail.smtp.password" encrypted="no" value="password"/> | ||
<property name="mail.smtp.socketFactory.class" encrypted="no" value="javax.net.ssl.SSLSocketFactory"/> | ||
<property name="mail.smtp.auth" encrypted="no" value="true"/> | ||
<property name="mail.smtp.port" encrypted="no" value="25"/> | ||
<property name="mail.smtp.from" encrypted="no" value="email@outlook.com"/> | ||
<property name="mail.debug" encrypted="no" value="true"/> | ||
</configuration> | ||
<!-- Google gmail Example --> | ||
<configuration1> | ||
<property name="mail.smtp.auth" encrypted="no" value="true"/> | ||
<property name="mail.smtp.starttls.enable" encrypted="no" value="true"/> | ||
<property name="mail.smtp.host" encrypted="no" value="smtp.gmail.com"/> | ||
<property name="mail.smtp.socketFactory.port" encrypted="no" value="465"/> | ||
<property name="mail.smtp.user" encrypted="no" value="email@gmail.com"/> | ||
<property name="mail.smtp.password" encrypted="no" value="password"/> | ||
<property name="mail.smtp.socketFactory.class" encrypted="no" value="javax.net.ssl.SSLSocketFactory"/> | ||
<property name="mail.smtp.auth" encrypted="no" value="true"/> | ||
<property name="mail.smtp.port" encrypted="no" value="465"/> | ||
<property name="mail.smtp.from" encrypted="no" value="email@gmail.com"/> | ||
<property name="mail.debug" encrypted="no" value="true"/> | ||
</configuration1> | ||
<!-- Distribution Lists are referred to within message mapping Config.xml --> | ||
<distributionList id="StartStop" enabled="N" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
<distributionList id="LabelSync" enabled="N" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
<distributionList id="Logs" enabled="Y" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
<distributionList id="Config" enabled="Y" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
<distributionList id="Monitor" enabled="Y" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
<distributionList id="Info" enabled="Y" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
<distributionList id="Error" enabled="Y" maxFrequencyMins="5"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
<distributionList id="SSCC" enabled="Y" maxFrequencyMins="5"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
<distributionList id="OrderAssigned" enabled="Y" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
<emailSettings> | ||
|
||
<!-- Example Version--> | ||
|
||
<!-- The section called "configuration" is always the active one - rename as appropriate--> | ||
|
||
<!-- SMTP No Authentication Example --> | ||
|
||
<configuration2> | ||
<property name="mail.smtp.starttls.enable" value="false"/> | ||
<property name="mail.smtp.host" value="smtp.demo.com"/> | ||
<property name="mail.smtp.socketFactory.port" value="25"/> | ||
<property name="mail.smtp.user" value="demo@email.com"/> | ||
<property name="mail.smtp.password" value=""/> | ||
<property name="mail.smtp.socketFactory.class" value="javax.net.ssl.SSLSocketFactory"/> | ||
<property name="mail.smtp.auth" value="false"/> | ||
<property name="mail.smtp.port" value="25"/> | ||
<property name="mail.smtp.from" value="demo@email.com"/> | ||
<property name="mail.debug" value="true"/> | ||
</configuration2> | ||
|
||
<!-- Microsoft smtp.live.com Example --> | ||
|
||
<configuration> | ||
<property name="mail.smtp.auth" value="true"/> | ||
<property name="mail.smtp.starttls.enable" value="true"/> | ||
<property name="mail.smtp.host" value="smtp.live.com"/> | ||
<property name="mail.smtp.socketFactory.port" value="25"/> | ||
<property name="mail.smtp.user" value="email@outlook.com"/> | ||
<property name="mail.smtp.password" value="password"/> | ||
<property name="mail.smtp.socketFactory.class" value="javax.net.ssl.SSLSocketFactory"/> | ||
<property name="mail.smtp.auth" value="true"/> | ||
<property name="mail.smtp.port" value="25"/> | ||
<property name="mail.smtp.from" value="email@outlook.com"/> | ||
<property name="mail.debug" value="true"/> | ||
</configuration> | ||
|
||
<!-- Google gmail Example --> | ||
|
||
<configuration1> | ||
<property name="mail.smtp.auth" value="true"/> | ||
<property name="mail.smtp.starttls.enable" value="true"/> | ||
<property name="mail.smtp.host" value="smtp.gmail.com"/> | ||
<property name="mail.smtp.socketFactory.port" value="465"/> | ||
<property name="mail.smtp.user" value="email@gmail.com"/> | ||
<property name="mail.smtp.password" value="password"/> | ||
<property name="mail.smtp.socketFactory.class" value="javax.net.ssl.SSLSocketFactory"/> | ||
<property name="mail.smtp.auth" value="true"/> | ||
<property name="mail.smtp.port" value="465"/> | ||
<property name="mail.smtp.from" value="email@gmail.com"/> | ||
<property name="mail.debug" value="true"/> | ||
</configuration1> | ||
|
||
|
||
<!-- Distribution Lists are referred to within message mapping Config.xml --> | ||
|
||
<distributionList id="StartStop" enabled="N" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
|
||
<distributionList id="LabelSync" enabled="N" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
|
||
<distributionList id="Logs" enabled="Y" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
|
||
<distributionList id="Config" enabled="Y" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
|
||
<distributionList id="Monitor" enabled="Y" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
|
||
<distributionList id="Info" enabled="Y" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
|
||
<distributionList id="Error" enabled="Y" maxFrequencyMins="5"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
|
||
<distributionList id="SSCC" enabled="Y" maxFrequencyMins="5"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
|
||
<distributionList id="OrderAssigned" enabled="Y" maxFrequencyMins="0"> | ||
<toAddressList>example@email.com</toAddressList> | ||
</distributionList> | ||
|
||
|
||
</emailSettings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters