35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
|
From 89e2e52cc4f481dede63fe32381f7862cd2a6b69 Mon Sep 17 00:00:00 2001
|
||
|
From: Michael Simacek <msimacek@redhat.com>
|
||
|
Date: Thu, 5 May 2016 11:20:48 +0200
|
||
|
Subject: [PATCH 1/2] Maven 3
|
||
|
|
||
|
---
|
||
|
.../java/org/apache/maven/plugin/surefire/SurefireHelper.java | 11 +----------
|
||
|
1 file changed, 1 insertion(+), 10 deletions(-)
|
||
|
|
||
|
diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireHelper.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireHelper.java
|
||
|
index a4319bc..32ccf34 100644
|
||
|
--- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireHelper.java
|
||
|
+++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireHelper.java
|
||
|
@@ -162,16 +162,7 @@ public final class SurefireHelper
|
||
|
private static String getFailureBehavior( MavenExecutionRequest request )
|
||
|
throws NoSuchMethodException, InvocationTargetException, IllegalAccessException
|
||
|
{
|
||
|
- try
|
||
|
- {
|
||
|
- return request.getFailureBehavior();
|
||
|
- }
|
||
|
- catch ( NoSuchMethodError e )
|
||
|
- {
|
||
|
- return (String) request.getClass()
|
||
|
- .getMethod( "getReactorFailureBehavior" )
|
||
|
- .invoke( request );
|
||
|
- }
|
||
|
+ return request.getReactorFailureBehavior();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
--
|
||
|
2.5.5
|
||
|
|