Skip to content
Snippets Groups Projects
Commit f5932505 authored by Emmanuel Bourg's avatar Emmanuel Bourg
Browse files

Refreshed the patches

parent 9badf3b0
No related branches found
No related tags found
No related merge requests found
maven-compiler-plugin (3.10.1-1) UNRELEASED; urgency=medium
* New upstream release
- Refreshed the patches
-- Emmanuel Bourg <ebourg@apache.org> Tue, 03 Jan 2023 19:54:35 +0100
maven-compiler-plugin (3.8.1-5) unstable; urgency=medium
* Team upload.
......
......@@ -3,7 +3,7 @@ Author: Emmanuel Bourg <ebourg@apache.org>
Bug: https://issues.apache.org/jira/browse/MCOMPILER-397
--- a/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
+++ b/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
@@ -998,7 +998,7 @@
@@ -1078,7 +1078,7 @@
if ( value == null )
{
entry = entryIter.next();
......
From 6fd3a46885edd81e62ae62cfc798c1e1b903e170 Mon Sep 17 00:00:00 2001
From: Karl Heinz Marbaise <khmarbaise@apache.org>
Date: Sun, 28 Apr 2019 14:06:25 +0200
Subject: [PATCH] [MCOMPILER-379] - Fatal error compiling: basedir .../target/generated-sources/annotations does not exist
--- a/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
+++ b/src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
@@ -655,6 +655,11 @@
if ( generatedSourcesDirectory != null )
{
+ if ( !generatedSourcesDirectory.exists() )
+ {
+ generatedSourcesDirectory.mkdirs();
+ }
+
String generatedSourcesPath = generatedSourcesDirectory.getAbsolutePath();
compileSourceRoots.add( generatedSourcesPath );
01-fix-wrong-junit-path.patch
02-reproducible-jpms-args.patch
MCOMPILER-379.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment