You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2016/11/14 06:15:44 UTC

logging-log4j2 git commit: Travis CI: Move Jacoco plugin to management section. Add a little more info for Maven log.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 743815d73 -> e52c5243e


Travis CI: Move Jacoco plugin to management section. Add a little more
info for Maven log.

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

Branch: refs/heads/master
Commit: e52c5243e600826309fc29cfc5a5d22004f41ac3
Parents: 743815d
Author: Gary Gregory <gg...@apache.org>
Authored: Sun Nov 13 22:15:43 2016 -0800
Committer: Gary Gregory <gg...@apache.org>
Committed: Sun Nov 13 22:15:43 2016 -0800

----------------------------------------------------------------------
 .travis.yml |  2 +-
 pom.xml     | 30 +++++++++++++-----------------
 2 files changed, 14 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/e52c5243/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index e23dfdf..bc06df7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,4 +17,4 @@ jdk:
   - oraclejdk7
 
 after_success:
-  - mvn test jacoco:report coveralls:report -pl !log4j-bom
+  - mvn --show-version -pl !log4j-bom -X test jacoco:report coveralls:report

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/e52c5243/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9ecd7c4..323677f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -936,6 +936,19 @@
           <artifactId>coveralls-maven-plugin</artifactId>
           <version>4.3.0</version>
         </plugin>
+        <plugin>
+          <groupId>org.jacoco</groupId>
+          <artifactId>jacoco-maven-plugin</artifactId>
+          <version>${jacoco.plugin.version}</version>
+          <executions>
+            <execution>
+                <id>prepare-agent</id>
+                <goals>
+                  <goal>prepare-agent</goal>
+                </goals>
+            </execution>
+          </executions>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>
@@ -1073,19 +1086,6 @@
           </execution>
         </executions>
       </plugin> -->
-      <plugin>
-        <groupId>org.jacoco</groupId>
-        <artifactId>jacoco-maven-plugin</artifactId>
-        <version>${jacoco.plugin.version}</version>
-        <executions>
-          <execution>
-              <id>prepare-agent</id>
-              <goals>
-                <goal>prepare-agent</goal>
-              </goals>
-          </execution>
-        </executions>
-      </plugin>      
       <!-- We need to disable the standard ASF configuration to be able to publish our own notice and license files -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -1153,10 +1153,6 @@
           </excludes>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.jacoco</groupId>
-        <artifactId>jacoco-maven-plugin</artifactId>
-      </plugin>
     </plugins>
   </build>
   <reporting>