Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
maven-compiler-plugin
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Java Maintainers
maven-compiler-plugin
Commits
cbf93612
Commit
cbf93612
authored
5 years ago
by
Emmanuel Bourg
Browse files
Options
Downloads
Patches
Plain Diff
Backported the fix for MCOMPILER-379
parent
e2c2dd54
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+8
-0
8 additions, 0 deletions
debian/changelog
debian/patches/MCOMPILER-379.patch
+18
-0
18 additions, 0 deletions
debian/patches/MCOMPILER-379.patch
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
with
27 additions
and
0 deletions
debian/changelog
+
8
−
0
View file @
cbf93612
maven-compiler-plugin (3.8.1-4) unstable; urgency=medium
* Team upload.
* Backported the fix for MCOMPILER-379 (fixes the compilation errors
'basedir .../test-generated-sources/annotations does not exist')
-- Emmanuel Bourg <ebourg@apache.org> Wed, 11 Sep 2019 12:04:45 +0200
maven-compiler-plugin (3.8.1-3) unstable; urgency=medium
* Team upload.
...
...
This diff is collapsed.
Click to expand it.
debian/patches/MCOMPILER-379.patch
0 → 100644
+
18
−
0
View file @
cbf93612
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 );
This diff is collapsed.
Click to expand it.
debian/patches/series
+
1
−
0
View file @
cbf93612
01-fix-wrong-junit-path.patch
02-reproducible-jpms-args.patch
MCOMPILER-379.patch
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment