Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Motsch2020-03-19 09:41:45 +0000
committerRalph Steiner2020-03-25 18:18:41 +0000
commit681bf336254957a48c853b353ec08d856b967877 (patch)
treed12c4b83f19b5efc71c30e86329f8303f8e40078 /org.eclipse.scout.rt.mail
parentf0b918c18b8dba6476705c263a13b7d5875672d0 (diff)
downloadorg.eclipse.scout.rt-681bf336254957a48c853b353ec08d856b967877.tar.gz
org.eclipse.scout.rt-681bf336254957a48c853b353ec08d856b967877.tar.xz
org.eclipse.scout.rt-681bf336254957a48c853b353ec08d856b967877.zip
javax to jakarta name migration
Phase 1: Change artifact names (the box) but keep package names and binary contents. For more details see https://eclipse-foundation.blog/2019/05/03/jakarta-ee-java-trademarks/ The pom excludes were updated as well. Excludes are typically in the dependency-management of the pom defining the version of a dependency. Signed-off-by: Ivan Motsch <ivan.motsch@bsiag.com>
Diffstat (limited to 'org.eclipse.scout.rt.mail')
-rw-r--r--org.eclipse.scout.rt.mail/pom.xml10
1 files changed, 2 insertions, 8 deletions
diff --git a/org.eclipse.scout.rt.mail/pom.xml b/org.eclipse.scout.rt.mail/pom.xml
index 38dbb83658..8bb81676fd 100644
--- a/org.eclipse.scout.rt.mail/pom.xml
+++ b/org.eclipse.scout.rt.mail/pom.xml
@@ -33,17 +33,11 @@
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
- <artifactId>javax.mail</artifactId>
- <exclusions>
- <exclusion>
- <groupId>javax.activation</groupId>
- <artifactId>activation</artifactId>
- </exclusion>
- </exclusions>
+ <artifactId>jakarta.mail</artifactId>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
- <artifactId>javax.activation</artifactId>
+ <artifactId>jakarta.activation</artifactId>
</dependency>
</dependencies>
</project>

Back to the top