You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2018/02/13 22:26:59 UTC

[02/14] commons-rng git commit: CheckStyle does not support "module-info.java" files.

CheckStyle does not support "module-info.java" files.


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

Branch: refs/heads/master
Commit: 53649388dd090fc88b0439aff78fc94f144e4d80
Parents: 2a82db1
Author: Gilles <er...@apache.org>
Authored: Mon Feb 12 16:42:47 2018 +0100
Committer: Gilles <er...@apache.org>
Committed: Mon Feb 12 16:42:47 2018 +0100

----------------------------------------------------------------------
 pom.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rng/blob/53649388/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f4c7adf..454e6d3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -101,7 +101,7 @@
     <maven.compiler.target>1.6</maven.compiler.target>
     <rng.pmd.version>3.5</rng.pmd.version>
     <rng.findbugs.version>3.0.2</rng.findbugs.version>
-    <rng.checkstyle.version>2.17</rng.checkstyle.version>
+    <rng.checkstyle.version>3.0.0</rng.checkstyle.version>
     <rng.clirr.version>2.8</rng.clirr.version>
     <rng.mathjax.version>2.7.2</rng.mathjax.version>
     <!-- Workaround to avoid duplicating config files. -->
@@ -264,6 +264,7 @@
             <logViolationsToConsole>false</logViolationsToConsole>
             <failOnViolation>false</failOnViolation>
             <resourceExcludes>NOTICE.txt,LICENSE.txt</resourceExcludes>
+            <excludes>**/module-info.java</excludes>
           </configuration>
         </plugin>
       </plugins>
@@ -335,6 +336,7 @@
           <headerLocation>${rng.parent.dir}/src/main/resources/checkstyle/license-header.txt</headerLocation>
           <enableRulesSummary>false</enableRulesSummary>
           <includeResources>false</includeResources>
+          <excludes>**/module-info.java</excludes>
         </configuration>
         <reportSets>
           <reportSet>
@@ -585,6 +587,7 @@
     <module>commons-rng-simple</module>
     <module>commons-rng-sampling</module>
     <module>commons-rng-jmh</module>
+    <module>commons-rng-jpms</module>
     <!--
         Built only upon explicit request (requires Java 1.7+).
         See profile "commons-rng-examples".