re-import sources as agreed with the maintainer
This commit is contained in:
parent
99fc901198
commit
0cff35d41e
13
.gitignore
vendored
13
.gitignore
vendored
@ -1,2 +1,13 @@
|
||||
SOURCES/maven-compiler-plugin-3.7.0-source-release.zip
|
||||
maven-compiler-plugin-2.0.2.tar.xz
|
||||
/maven-compiler-plugin-2.3.2.tar.xz
|
||||
/maven-compiler-plugin-2.4.tar.xz
|
||||
/maven-compiler-plugin-2.5.1-source-release.zip
|
||||
/maven-compiler-plugin-3.0-source-release.zip
|
||||
/maven-compiler-plugin-3.1-source-release.zip
|
||||
/maven-compiler-plugin-3.2-source-release.zip
|
||||
/maven-compiler-plugin-3.3-source-release.zip
|
||||
/maven-compiler-plugin-3.5-source-release.zip
|
||||
/maven-compiler-plugin-3.5.1-source-release.zip
|
||||
/maven-compiler-plugin-3.6.0-source-release.zip
|
||||
/maven-compiler-plugin-3.6.1-source-release.zip
|
||||
/maven-compiler-plugin-3.7.0-source-release.zip
|
||||
|
||||
@ -1,25 +0,0 @@
|
||||
From fd5749e9b8d47cf350527c4831a4ee53cefc60aa Mon Sep 17 00:00:00 2001
|
||||
From: Mat Booth <mat.booth@redhat.com>
|
||||
Date: Mon, 20 Jul 2020 22:51:52 +0100
|
||||
Subject: [PATCH 1/2] plexus languages 1.0
|
||||
|
||||
---
|
||||
.../java/org/apache/maven/plugin/compiler/CompilerMojo.java | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/main/java/org/apache/maven/plugin/compiler/CompilerMojo.java b/src/main/java/org/apache/maven/plugin/compiler/CompilerMojo.java
|
||||
index 8bc437b..326f9f9 100644
|
||||
--- a/src/main/java/org/apache/maven/plugin/compiler/CompilerMojo.java
|
||||
+++ b/src/main/java/org/apache/maven/plugin/compiler/CompilerMojo.java
|
||||
@@ -50,7 +50,7 @@ import org.codehaus.plexus.languages.java.jpms.JavaModuleDescriptor;
|
||||
import org.codehaus.plexus.languages.java.jpms.LocationManager;
|
||||
import org.codehaus.plexus.languages.java.jpms.ResolvePathsRequest;
|
||||
import org.codehaus.plexus.languages.java.jpms.ResolvePathsResult;
|
||||
-import org.codehaus.plexus.languages.java.jpms.ResolvePathsResult.ModuleNameSource;
|
||||
+import org.codehaus.plexus.languages.java.jpms.ModuleNameSource;
|
||||
|
||||
/**
|
||||
* Compiles application sources
|
||||
--
|
||||
2.26.2
|
||||
|
||||
@ -1,25 +0,0 @@
|
||||
From 8ef296b291e7ef1e1e4ab4fa4b520a80bde48a9f Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?J=C3=B6rg=20Hohwiller?= <hohwille@users.noreply.github.com>
|
||||
Date: Tue, 17 Dec 2019 19:05:57 +0100
|
||||
Subject: [PATCH 2/2] MCOMPILER-359: Fix for NPE
|
||||
|
||||
---
|
||||
.../java/org/apache/maven/plugin/compiler/TestCompilerMojo.java | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/main/java/org/apache/maven/plugin/compiler/TestCompilerMojo.java b/src/main/java/org/apache/maven/plugin/compiler/TestCompilerMojo.java
|
||||
index f8b9ba1..203dd07 100644
|
||||
--- a/src/main/java/org/apache/maven/plugin/compiler/TestCompilerMojo.java
|
||||
+++ b/src/main/java/org/apache/maven/plugin/compiler/TestCompilerMojo.java
|
||||
@@ -250,7 +250,7 @@ public class TestCompilerMojo
|
||||
|
||||
for ( Entry<String, Exception> pathException : result.getPathExceptions().entrySet() )
|
||||
{
|
||||
- Throwable cause = pathException.getValue().getCause();
|
||||
+ Throwable cause = pathException.getValue();
|
||||
while ( cause.getCause() != null )
|
||||
{
|
||||
cause = cause.getCause();
|
||||
--
|
||||
2.26.2
|
||||
|
||||
@ -1,8 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
decision_contexts:
|
||||
- osci_compose_gate
|
||||
rules:
|
||||
# https://docs.engineering.redhat.com/display/RHELPLAN/Maven+Bootstrap+manual+gating+test
|
||||
- !PassingTestCaseRule {test_case_name: manual.sst_cs_apps.maven.bootstrap}
|
||||
Loading…
Reference in New Issue
Block a user