Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 1 addition & 19 deletions core/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!--

Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2021, 2022 Oracle and/or its affiliates. All rights reserved.

This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -42,22 +42,4 @@
<scope>runtime</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Import-Package>
javax.security.sasl;resolution:=optional,
sun.security.util;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
4 changes: 4 additions & 0 deletions doc/release/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ for the Eclipse EE4J Angus Mail project:

https://github.com/eclipse-ee4j/angus-mail/issues/<bug-number>

CHANGES IN THE 1.0.1 RELEASE
----------------------------
15: org.eclipse.angus.mail bundle fails to resolve under OSGi due to mandatory 'sun.security.util' package

CHANGES IN THE 1.0.0 RELEASE
----------------------------
The following bugs have been fixed in the 1.0.0 release.
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,11 @@
<instructions>
<_noextraheaders>true</_noextraheaders>
<DynamicImport-Package>*</DynamicImport-Package>
<Import-Package>
javax.security.sasl;resolution:=optional,
sun.security.util;resolution:=optional,
*
</Import-Package>
</instructions>
<niceManifest>true</niceManifest>
<archive>
Expand Down
18 changes: 0 additions & 18 deletions providers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,24 +53,6 @@
<module>jakarta.mail</module>
</modules>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Import-Package>
javax.security.sasl;resolution:=optional,
sun.security.util;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<!--
This profile contains modules that should only be built
Expand Down