You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ma...@apache.org on 2016/10/20 20:47:18 UTC

nifi git commit: NIFI-2685 - Configure surefire to use JAVA Headless mode

Repository: nifi
Updated Branches:
  refs/heads/master f5f132b1a -> 9f6fb617b


NIFI-2685 - Configure surefire to use JAVA Headless mode

This closes #961


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/9f6fb617
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/9f6fb617
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/9f6fb617

Branch: refs/heads/master
Commit: 9f6fb617ba440a77cc0e44dcf38ab0ce09a7a15c
Parents: f5f132b
Author: Andre F de Miranda <tr...@users.noreply.github.com>
Authored: Fri Aug 26 17:04:17 2016 +1000
Committer: Matt Burgess <ma...@apache.org>
Committed: Thu Oct 20 16:46:54 2016 -0400

----------------------------------------------------------------------
 pom.xml | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/9f6fb617/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 7cf41b4..11bcd36 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1435,6 +1435,9 @@ language governing permissions and limitations under the License. -->
                     <artifactId>maven-surefire-plugin</artifactId>
                     <version>2.18</version>
                     <configuration>
+                        <systemPropertyVariables>
+                            <java.awt.headless>true</java.awt.headless>
+                        </systemPropertyVariables>
                         <includes>
                             <include>**/*Test.class</include>
                             <include>**/Test*.class</include>