You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/07/08 17:49:25 UTC

commons-dbcp git commit: Print less info on the console during tests and remove the Java 7 profile. Use property for japicmp oldVersionPattern.

Repository: commons-dbcp
Updated Branches:
  refs/heads/master 3118343d4 -> 6afe06b9e


Print less info on the console during tests and remove the Java 7
profile. Use property for japicmp oldVersionPattern.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/6afe06b9
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/6afe06b9
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/6afe06b9

Branch: refs/heads/master
Commit: 6afe06b9e85720d9ddbf4bd92b818dc8c938bf8f
Parents: 3118343
Author: Gary Gregory <ga...@gmail.com>
Authored: Sun Jul 8 11:49:22 2018 -0600
Committer: Gary Gregory <ga...@gmail.com>
Committed: Sun Jul 8 11:49:22 2018 -0600

----------------------------------------------------------------------
 pom.xml | 31 +------------------------------
 1 file changed, 1 insertion(+), 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/6afe06b9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d672dd3..5887a92 100644
--- a/pom.xml
+++ b/pom.xml
@@ -355,7 +355,6 @@
             <!-- Ensure that logging messages can be inspected -->
             <org.apache.commons.logging.Log>org.apache.commons.dbcp2.StackMessageLog</org.apache.commons.logging.Log>
           </systemPropertyVariables>
-          <reportFormat>plain</reportFormat>
           <excludes>
             <!-- Test support files -->
             <exclude>**/Tester*.java</exclude>
@@ -423,7 +422,7 @@
             <reportOnlyFilename>true</reportOnlyFilename>
             <skipPomModules>true</skipPomModules>
             <ignoreMissingClasses>${commons.japicmp.ignoreMissingClasses}</ignoreMissingClasses>
-            <oldVersionPattern>2.2.0</oldVersionPattern>
+            <oldVersionPattern>${commons.bc.version}</oldVersionPattern>
           </parameter>
           <dependencies>
             <dependency>
@@ -503,33 +502,5 @@
     </plugins>
   </reporting>
   <profiles>
-    <profile>
-      <id>jdk7</id>
-      <activation>
-        <jdk>(,1.7]</jdk>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <systemPropertyVariables>
-                <!-- Ensure that logging messages can be inspected -->
-                <org.apache.commons.logging.Log>org.apache.commons.dbcp2.StackMessageLog</org.apache.commons.logging.Log>
-              </systemPropertyVariables>
-              <reportFormat>plain</reportFormat>
-              <excludes>
-                <!-- Test support files -->
-                <exclude>**/Tester*.java</exclude>
-                <!-- Exclude nested classes which Surefire cannot handle -->
-                <exclude>**/Test*$*.java</exclude>
-                <exclude>**/*Narayana*.java</exclude>
-              </excludes>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
   </profiles>
 </project>