-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support minimum JDK of 11+ and minimum of Android API 33+ #709 #714
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Jorge Bescos Gascon <[email protected]>
api/pom.xml
Outdated
@@ -379,7 +365,7 @@ | |||
osgi.serviceloader;filter:="(osgi.serviceloader=jakarta.mail.util.StreamProvider)"; | |||
osgi.serviceloader="jakarta.mail.util.StreamProvider"; | |||
cardinality:=multiple;resolution:=optional, | |||
osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))" | |||
osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=11))" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this line can be removed (used to be a workaround)
api/pom.xml
Outdated
@@ -323,27 +323,13 @@ | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-compiler-plugin</artifactId> | |||
<configuration> | |||
<release>9</release> | |||
<release>11</release> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
define maven.compiler.release
and maven.compiler.testRelease
properties and remove this line (and the one for javadoc) instead
Signed-off-by: Jorge Bescos Gascon <[email protected]>
#709
I set it as a draft for now, as we have to wait for branch 2.2.x and I will need to check also some documents.