Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C3836200CF9 for ; Sun, 17 Sep 2017 13:07:30 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C20471609D8; Sun, 17 Sep 2017 11:07:30 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E0C471609BF for ; Sun, 17 Sep 2017 13:07:29 +0200 (CEST) Received: (qmail 26836 invoked by uid 500); 17 Sep 2017 11:07:29 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 26827 invoked by uid 99); 17 Sep 2017 11:07:29 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Sep 2017 11:07:29 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 807383A00E6 for ; Sun, 17 Sep 2017 11:07:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1808617 - in /poi/trunk: build.xml jenkins/create_jobs.groovy sonar/main/pom.xml sonar/ooxml/pom.xml sonar/pom.xml Date: Sun, 17 Sep 2017 11:07:28 -0000 To: commits@poi.apache.org From: centic@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170917110728.807383A00E6@svn01-us-west.apache.org> archived-at: Sun, 17 Sep 2017 11:07:31 -0000 Author: centic Date: Sun Sep 17 11:07:28 2017 New Revision: 1808617 URL: http://svn.apache.org/viewvc?rev=1808617&view=rev Log: MaxPermSize is not used any more in Java 8, so remove it everywhere Modified: poi/trunk/build.xml poi/trunk/jenkins/create_jobs.groovy poi/trunk/sonar/main/pom.xml poi/trunk/sonar/ooxml/pom.xml poi/trunk/sonar/pom.xml Modified: poi/trunk/build.xml URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1808617&r1=1808616&r2=1808617&view=diff ============================================================================== --- poi/trunk/build.xml (original) +++ poi/trunk/build.xml Sun Sep 17 11:07:28 2017 @@ -28,7 +28,7 @@ under the License. Some people may find the tests hang when run through Ant. If this happens to you, try giving Ant some more memory when you run it, eg: - ANT_OPTS="-Xmx1024m -XX:MaxPermSize=256m" ant test + ANT_OPTS="-Xmx1024m" ant test --> - - @@ -1486,7 +1484,6 @@ under the License. - @@ -1570,7 +1567,6 @@ under the License. failureproperty="ooxml.ss.test.failed"> - @@ -1685,7 +1681,6 @@ under the License. - Modified: poi/trunk/jenkins/create_jobs.groovy URL: http://svn.apache.org/viewvc/poi/trunk/jenkins/create_jobs.groovy?rev=1808617&r1=1808616&r2=1808617&view=diff ============================================================================== --- poi/trunk/jenkins/create_jobs.groovy (original) +++ poi/trunk/jenkins/create_jobs.groovy Sun Sep 17 11:07:28 2017 @@ -36,8 +36,7 @@ def poijobs = [ skipcigame: true ], [ name: 'POI-DSL-1.9', jdk: '1.9', trigger: triggerSundays, - properties: ['-Dmaxpermsize=-Dthis.is.a.dummy=true', - '-Djava9addmods=--add-modules=java.xml.bind', + properties: ['-Djava9addmods=--add-modules=java.xml.bind', '-Djavadoc9addmods=--add-modules=java.xml.bind', '-Djava9addmodsvalue=-Dsun.reflect.debugModuleAccessChecks=true', '-Djava9addopens1=--add-opens=java.xml/com.sun.org.apache.xerces.internal.util=ALL-UNNAMED', @@ -251,7 +250,6 @@ poijobs.each { poijob -> rootPOM('sonar/pom.xml') mavenOpts('-Xmx2g') mavenOpts('-Xms256m') - mavenOpts('-XX:MaxPermSize=512m') mavenOpts('-XX:-OmitStackTraceInFastThrow') localRepository(LocalRepositoryLocation.LOCAL_TO_WORKSPACE) mavenInstallation('maven-3.2.1') Modified: poi/trunk/sonar/main/pom.xml URL: http://svn.apache.org/viewvc/poi/trunk/sonar/main/pom.xml?rev=1808617&r1=1808616&r2=1808617&view=diff ============================================================================== --- poi/trunk/sonar/main/pom.xml (original) +++ poi/trunk/sonar/main/pom.xml Sun Sep 17 11:07:28 2017 @@ -103,7 +103,7 @@ maven-surefire-plugin ${maven.plugin.surefire.version} - @{argLine} -Duser.language=en -Duser.country=US -Xmx1024m -XX:MaxPermSize=256m -XX:-OmitStackTraceInFastThrow + @{argLine} -Duser.language=en -Duser.country=US -Xmx1024m -XX:-OmitStackTraceInFastThrow Modified: poi/trunk/sonar/ooxml/pom.xml URL: http://svn.apache.org/viewvc/poi/trunk/sonar/ooxml/pom.xml?rev=1808617&r1=1808616&r2=1808617&view=diff ============================================================================== --- poi/trunk/sonar/ooxml/pom.xml (original) +++ poi/trunk/sonar/ooxml/pom.xml Sun Sep 17 11:07:28 2017 @@ -93,7 +93,7 @@ maven-surefire-plugin ${maven.plugin.surefire.version} - @{argLine} -Duser.language=en -Duser.country=US -Xmx1024m -XX:MaxPermSize=256m -XX:-OmitStackTraceInFastThrow + @{argLine} -Duser.language=en -Duser.country=US -Xmx1024m -XX:-OmitStackTraceInFastThrow Modified: poi/trunk/sonar/pom.xml URL: http://svn.apache.org/viewvc/poi/trunk/sonar/pom.xml?rev=1808617&r1=1808616&r2=1808617&view=diff ============================================================================== --- poi/trunk/sonar/pom.xml (original) +++ poi/trunk/sonar/pom.xml Sun Sep 17 11:07:28 2017 @@ -156,7 +156,7 @@ 512m - -Xmx768m -XX:MaxPermSize=128m + -Xmx768m @@ -170,7 +170,7 @@ 768m - -Xmx1024m -XX:MaxPermSize=256m + -Xmx1024m --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org