Codebase list maven-debian-helper / HEAD
Support the MAVEN_OPTS environment variable to pass JVM arguments Emmanuel Bourg 11 months ago
2 changed file(s) with 11 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 maven-debian-helper (2.6.3) unstable; urgency=medium
1
2 * Support the MAVEN_OPTS environment variable to pass JVM arguments
3 (such as --add-opens/--add-exports required to run old plugins on recent
4 JDKs)
5
6 -- Emmanuel Bourg <ebourg@apache.org> Fri, 12 May 2023 01:20:16 +0200
7
08 maven-debian-helper (2.6.2) unstable; urgency=medium
19
210 * Team upload.
3838 "-Dclassworlds.conf=$classconf");
3939 if (-e "$this->{cwd}/debian/maven.properties") {
4040 push (@jvmopts, "-Dproperties.file.manual=$this->{cwd}/debian/maven.properties");
41 }
42 if (exists $ENV{MAVEN_OPTS}) {
43 push (@jvmopts, split(/ /, $ENV{MAVEN_OPTS}));
4144 }
4245
4346 @{$this->{maven_cmd}} = ($java_home . '/bin/java',