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/appveyor-improvement Commit: 9f6fb617ba440a77cc0e44dcf38ab0ce09a7a15c Parents: f5f132b Author: Andre F de Miranda <[email protected]> Authored: Fri Aug 26 17:04:17 2016 +1000 Committer: Matt Burgess <[email protected]> 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>
