-
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change dependencies to Jakarta EE libraries (#1605)
* Remove Jersey dependency and migrate WPS WSDL functionality to ResourcesServlet * update namespace to be compliant with jaxb v3 * replace javax dependecies with jakarta for jaxb usage * fix formatting * * replace javax with jakarta dependencies * replace maven-jaxb2-plugin with jaxb-maven-plugin * * change more javax.activation and javax.soap to jakarta * * fix axiom/soap related issues of jakarta migration * * remove javax.* form exceptions of banDuplicateClasses + add banned dependencies for javax.xml.bind javax.activation * - remove JAXB references from main pom * * fix axiom issues * * move to older jakarta.activation-api 1.2.2 (which includes still javax.activation packages) * * include javax.activation and jakarta.activation * * fix dependency versions * * fiex deegree-protocol-wms tests * * fix oracle to use correct jaxb package * fix logging * * fixed formatting * * fix more dependency issues - remove obsolete stuff from pom.xml --------- Co-authored-by: Dirk Stenger <[email protected]> Co-authored-by: Kevin van den Bosch <[email protected]>
- Loading branch information
1 parent
b69536b
commit 1fbb503
Showing
178 changed files
with
414 additions
and
382 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
...tasource/src/main/resources/META-INF/schemas/connectionprovider/datasource/datasource.xsd
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
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
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 |
---|---|---|
|
@@ -41,14 +41,14 @@ | |
import java.util.List; | ||
import java.util.Properties; | ||
|
||
import javax.mail.Message; | ||
import javax.mail.Multipart; | ||
import javax.mail.Session; | ||
import javax.mail.Transport; | ||
import javax.mail.internet.InternetAddress; | ||
import javax.mail.internet.MimeBodyPart; | ||
import javax.mail.internet.MimeMessage; | ||
import javax.mail.internet.MimeMultipart; | ||
import jakarta.mail.Message; | ||
import jakarta.mail.Multipart; | ||
import jakarta.mail.Session; | ||
import jakarta.mail.Transport; | ||
import jakarta.mail.internet.InternetAddress; | ||
import jakarta.mail.internet.MimeBodyPart; | ||
import jakarta.mail.internet.MimeMessage; | ||
import jakarta.mail.internet.MimeMultipart; | ||
|
||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
@@ -57,8 +57,8 @@ | |
* A helper class to create and send mail. | ||
* | ||
* @author <a href="mailto:[email protected]">Torsten Friebe </A> | ||
* @see javax.mail.Message | ||
* @see javax.mail.internet.MimeMessage | ||
* @see jakarta.mail.Message | ||
* @see jakarta.mail.internet.MimeMessage | ||
*/ | ||
|
||
public final class MailHelper { | ||
|
@@ -121,7 +121,7 @@ public static void createAndSendMail(MailMessage eMess, String mailHost, File[] | |
* @param session | ||
* @throws SendMailException an exception if the message is undeliverable | ||
* | ||
* @see javax.mail.Transport | ||
* @see jakarta.mail.Transport | ||
* @see <a href= | ||
* "http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/Resources4.html#63060">J2EE Mail | ||
* Session connection </a> | ||
|
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
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
...gree-core-commons/src/main/resources/META-INF/schemas/commons/description/description.xsd
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
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
2 changes: 1 addition & 1 deletion
2
...-core-coverage/src/main/resources/META-INF/schemas/datasource/coverage/raster/pyramid.xsd
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
2 changes: 1 addition & 1 deletion
2
...e-core-coverage/src/main/resources/META-INF/schemas/datasource/coverage/raster/raster.xsd
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
Oops, something went wrong.