You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by re...@apache.org on 2017/10/25 17:21:25 UTC

svn commit: r1813323 - in /jackrabbit/branches/2.14: ./ jackrabbit-parent/pom.xml

Author: reschke
Date: Wed Oct 25 17:21:25 2017
New Revision: 1813323

URL: http://svn.apache.org/viewvc?rev=1813323&view=rev
Log:
JCR-4200: javax.transaction.UserTransaction hidden by surefire plugin in with Java 9 (ported to 2.14)

Override surefire's default "--add-module" directive for Java 9 (to be revisited in future versions of Java and/or the surefire plugin)

Modified:
    jackrabbit/branches/2.14/   (props changed)
    jackrabbit/branches/2.14/jackrabbit-parent/pom.xml

Propchange: jackrabbit/branches/2.14/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Wed Oct 25 17:21:25 2017
@@ -1,3 +1,3 @@
 /jackrabbit/branches/JCR-2272:1173165-1176545
 /jackrabbit/sandbox/JCR-2415-lucene-3.0:1060860-1064038
-/jackrabbit/trunk:1776907,1776911-1776912,1776914,1776918,1779166,1779460,1779614,1779632,1780208,1780220,1780406,1785225,1786325,1786330,1787043,1787381,1792100,1792105,1792113,1792193,1793315,1793323,1793327,1793332,1793339,1796980,1797209,1797917,1798586,1799429,1799538,1799549,1799575,1800359,1800378,1800752,1802925,1802977,1807234,1807244,1808752,1808754,1809149,1809329,1809624,1811667,1812543
+/jackrabbit/trunk:1776907,1776911-1776912,1776914,1776918,1779166,1779460,1779614,1779632,1780208,1780220,1780406,1785225,1786325,1786330,1787043,1787381,1792100,1792105,1792113,1792193,1793315,1793323,1793327,1793332,1793339,1796980,1797209,1797917,1798586,1799429,1799538,1799549,1799575,1800359,1800378,1800752,1802925,1802977,1807234,1807244,1808752,1808754,1809149,1809329,1809624,1811667,1812543,1812634

Modified: jackrabbit/branches/2.14/jackrabbit-parent/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/branches/2.14/jackrabbit-parent/pom.xml?rev=1813323&r1=1813322&r2=1813323&view=diff
==============================================================================
--- jackrabbit/branches/2.14/jackrabbit-parent/pom.xml (original)
+++ jackrabbit/branches/2.14/jackrabbit-parent/pom.xml Wed Oct 25 17:21:25 2017
@@ -44,7 +44,9 @@
 
   <properties>
     <test.opts.memory>-Xmx256m</test.opts.memory>
-    <test.opts>${test.opts.coverage} ${test.opts.memory} -enableassertions</test.opts>
+    <!-- JCR-4200 and SUREFIRE-1424 -->
+    <test.opts.modules>-XX:+IgnoreUnrecognizedVMOptions --add-modules=java.xml.bind</test.opts.modules>
+    <test.opts>${test.opts.modules} ${test.opts.coverage} ${test.opts.memory} -enableassertions</test.opts>
     <jetty.version>8.2.0.v20160908</jetty.version>
     <tika.version>1.7</tika.version>
     <project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>