3166f9b4ba
As javamail is a library and not an application itself it should not have a run-dependency on Java. It doesn't run on its own. It will always use the java version of the application that uses javamail. Use source and target arguments compatible with jdk21. If not using openjdk8 bring back the Java Activation Framework. In openjdk8 these classes were included in the core packages. In later JDK versions it was removed again. PR: 291388
23 lines
716 B
Properties
23 lines
716 B
Properties
--- build.properties.orig 2019-09-30 14:35:51 UTC
|
|
+++ build.properties
|
|
@@ -98,7 +98,7 @@ jaf.url=http://docs.oracle.com/javase/6/docs/api
|
|
### Additonal Component Properties for standalone release ###
|
|
release.dir=target/release
|
|
release.specversion=1.5
|
|
-release.version=1.5.1-SNAPSHOT
|
|
+release.version=1.6.2
|
|
release.mail.jar=${release.dir}/mail.jar
|
|
release.mailapi.jar=${release.dir}/lib/mailapi.jar
|
|
release.imap.jar=${release.dir}/lib/imap.jar
|
|
@@ -125,8 +125,8 @@ glassfish.maven_repository_importer.version=1.1
|
|
javac.debug=on
|
|
javac.optimize=off
|
|
javac.deprecation=off
|
|
-javac.source=1.5
|
|
-javac.target=1.5
|
|
+javac.source=8
|
|
+javac.target=8
|
|
|
|
### Use ant.verbose=-verbose for debugging ant targets
|
|
ant.verbose=
|