You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/06/17 17:28:11 UTC

[maven-enforcer] branch MENFORCER-294 updated (296357f -> 830dfd8)

This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch MENFORCER-294
in repository https://gitbox.apache.org/repos/asf/maven-enforcer.git.


 discard 296357f  [MENFORCER-294] Add profile for JaCoCo to support SonarQube analysis
     add 92c4307  Cleaned up maven-plugin-plugin configuration.
     add 554f343  Update requireJavaVersion.apt.vm
     add d825b6b  [MENFORCER-296] Update URL for CI System
     add 05b35e8  [MENFORCER-297] - Upgrade parent to 31  o Removed property based version definition for maven-plugin-plugin  o Upgraded extra-enforcer-rules to 1.0-beta-7
     add cd47545  fixed dist directory
     add 554dde3  removed configuration inherited from old svn days
     add f388633  [MNGSITE-328] use sha1 checksum instead of md5
     add 8b7c40a  Set surefire to 2.21.0 to support java 10 Normalize LICENSE file for Windows in IT to get same checksums
     add eac2712  Upgrade mockito to support Java 10
     add 84f2c66  Fix Javadoc errors
     add 62e3682  [maven-release-plugin] prepare release enforcer-3.0.0-M2
     add 7a98f2b  [maven-release-plugin] prepare for next development iteration
     add 9c4ab3e  [MENFORCER-142] - Specify enforcer rule in command line without modifying any pom  o Merged initial PoC implementation  o Added some basic integration tests.
     add ae18153  [MENFORCER-305] - Add documentation information for GitHub
     add 8269426  Updated version.
     new 830dfd8  [MENFORCER-294] Add profile for JaCoCo to support SonarQube analysis

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (296357f)
            \
             N -- N -- N   refs/heads/MENFORCER-294 (830dfd8)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/pull_request_template.md                   | 28 +++++++
 CONTRIBUTING.md                                    | 80 ++++++++++++++++++
 README.TXT                                         | 24 ------
 README.md                                          | 96 ++++++++++++++++++++++
 .../src/site/apt/requireJavaVersion.apt.vm         |  2 +-
 .../utils/MockEnforcerExpressionEvaluator.java     | 11 +--
 maven-enforcer-plugin/pom.xml                      | 12 +--
 .../invoker.properties                             |  2 +-
 .../{display-info => cli-always-fail}/pom.xml      | 17 ++--
 .../invoker.properties                             |  2 +-
 .../{always-pass => cli-always-pass}/pom.xml       |  0
 .../it/projects/require-file-checksum/setup.groovy |  8 +-
 .../apache/maven/plugins/enforcer/EnforceMojo.java | 42 +++++++++-
 pom.xml                                            | 22 ++---
 src/site/xdoc/download.xml.vm                      |  8 +-
 15 files changed, 273 insertions(+), 81 deletions(-)
 create mode 100644 .github/pull_request_template.md
 create mode 100644 CONTRIBUTING.md
 delete mode 100644 README.TXT
 create mode 100644 README.md
 copy maven-enforcer-plugin/src/it/projects/{ban-transitive-dependencies-fail => cli-always-fail}/invoker.properties (88%)
 copy maven-enforcer-plugin/src/it/projects/{display-info => cli-always-fail}/pom.xml (80%)
 copy maven-enforcer-plugin/src/it/projects/{always-fail-warn => cli-always-pass}/invoker.properties (88%)
 copy maven-enforcer-plugin/src/it/projects/{always-pass => cli-always-pass}/pom.xml (100%)
 copy Jenkinsfile => maven-enforcer-plugin/src/it/projects/require-file-checksum/setup.groovy (90%)

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.

[maven-enforcer] 01/01: [MENFORCER-294] Add profile for JaCoCo to support SonarQube analysis

Posted by kh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch MENFORCER-294
in repository https://gitbox.apache.org/repos/asf/maven-enforcer.git

commit 830dfd8d9f93495456309718aaa1c9b2798cc595
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Jan 6 16:50:14 2018 +0100

    [MENFORCER-294] Add profile for JaCoCo to support SonarQube analysis
---
 pom.xml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/pom.xml b/pom.xml
index c9c17fe..e13811e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -169,6 +169,11 @@
     <pluginManagement>
       <plugins>
         <plugin>
+          <groupId>org.jacoco</groupId>
+          <artifactId>jacoco-maven-plugin</artifactId>
+          <version>0.8.1</version>
+        </plugin>
+        <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-release-plugin</artifactId>
           <configuration>
@@ -220,4 +225,25 @@
       </plugin>
     </plugins>
   </reporting>
+  <profiles>
+    <profile>
+      <id>coverage</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.jacoco</groupId>
+            <artifactId>jacoco-maven-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>prepare-agent</goal>
+                  <goal>report</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.