You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2014/08/31 01:25:19 UTC

[1/2] git commit: Simplify reports config with existing properties.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 8f692cafe -> 1bcf0491c


Simplify reports config with existing properties.


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/f129d7d6
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/f129d7d6
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/f129d7d6

Branch: refs/heads/master
Commit: f129d7d6038d112ea1a97684e32ce87aa0a6a8b6
Parents: 8f692ca
Author: Matt Sicker <ma...@apache.org>
Authored: Sat Aug 30 18:07:03 2014 -0500
Committer: Matt Sicker <ma...@apache.org>
Committed: Sat Aug 30 18:07:03 2014 -0500

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


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f129d7d6/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 29b05af..9e2e892 100644
--- a/pom.xml
+++ b/pom.xml
@@ -910,9 +910,10 @@
           </reportSet>
         </reportSets>
         <configuration>
-          <webAccessUrl>https://git-wip-us.apache.org/repos/asf?p=logging-log4j2.git;a=summary</webAccessUrl>
-          <anonymousConnection>scm:git:http://git-wip-us.apache.org/repos/asf/logging-log4j2.git</anonymousConnection>
-          <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/logging-log4j2.git</developerConnection>
+          <!-- you'd think these would be the defaults, right? -->
+          <webAccessUrl>${project.scm.url}</webAccessUrl>
+          <anonymousConnection>${project.scm.connection}</anonymousConnection>
+          <developerConnection>${project.scm.developerConnection}</developerConnection>
         </configuration>
       </plugin>
       <!-- Surefire report -->


[2/2] git commit: Add more default memory settings for build.

Posted by ma...@apache.org.
Add more default memory settings for build.

  - Helps prevent need for boilerplate MAVEN_OPTS environment variables and such.
  - Good defaults to prevent build from failing.
  - Also added perm gen settings for the pre-1.8 profile.


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/1bcf0491
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/1bcf0491
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/1bcf0491

Branch: refs/heads/master
Commit: 1bcf0491c237e28ce16ecd2384ff8b33ebef9aaa
Parents: f129d7d
Author: Matt Sicker <ma...@apache.org>
Authored: Sat Aug 30 18:25:10 2014 -0500
Committer: Matt Sicker <ma...@apache.org>
Committed: Sat Aug 30 18:25:10 2014 -0500

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


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/1bcf0491/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9e2e892..51d4c2b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -669,6 +669,13 @@
             <showDeprecation>true</showDeprecation>
             <showWarnings>true</showWarnings>
             <encoding>UTF-8</encoding>
+            <fork>true</fork>
+            <meminitial>256</meminitial>
+            <maxmem>1024</maxmem>
+            <compilerArguments>
+              <Xmaxwarns>10000</Xmaxwarns>
+              <Xlint/>
+            </compilerArguments>
           </configuration>
         </plugin>
         <plugin>
@@ -1201,6 +1208,14 @@
               <argLine>-XX:MaxPermSize=512m</argLine>
             </configuration>
           </plugin>
+          <plugin>
+            <artifactId>maven-compiler-plugin</artifactId>
+            <configuration>
+              <compilerArgs>
+                <arg>-XX:MaxPermSize=512m</arg>
+              </compilerArgs>
+            </configuration>
+          </plugin>
         </plugins>
       </build>
     </profile>