You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2017/03/19 18:28:30 UTC

[1/3] [text] pox.xml: remove outdated comment about shading of commons-lang

Repository: commons-text
Updated Branches:
  refs/heads/master 94ca2ca01 -> 899edeb3b


pox.xml: remove outdated comment about shading of commons-lang


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

Branch: refs/heads/master
Commit: cc9dc64ac8d7b3dc629557187d0a9fcec44f03ee
Parents: 94ca2ca
Author: Pascal Schumacher <pa...@gmx.net>
Authored: Sun Mar 19 17:57:55 2017 +0100
Committer: Pascal Schumacher <pa...@gmx.net>
Committed: Sun Mar 19 17:57:55 2017 +0100

----------------------------------------------------------------------
 pom.xml | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/cc9dc64a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index cf03e86..58ec51a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -90,7 +90,6 @@
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-lang3</artifactId>
-      <!-- if upgrading, be sure to check shaded jar relocations! -->
       <version>3.5</version>
     </dependency>
     <!-- testing -->


[3/3] [text] travis: run apache-rat, clirr, checkstyle and javadoc during the build

Posted by pa...@apache.org.
travis: run apache-rat, clirr, checkstyle and javadoc during the build


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

Branch: refs/heads/master
Commit: 899edeb3b6b1ed2745f22677a80b61b7b03ca812
Parents: 2bd24ca
Author: Pascal Schumacher <pa...@gmx.net>
Authored: Sun Mar 19 19:28:21 2017 +0100
Committer: Pascal Schumacher <pa...@gmx.net>
Committed: Sun Mar 19 19:28:21 2017 +0100

----------------------------------------------------------------------
 .travis.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/899edeb3/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index d51d8d8..8f4c08f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,5 +21,8 @@ jdk:
   - oraclejdk7
   - oraclejdk8
 
+script:
+  - mvn test apache-rat:check clirr:check checkstyle:check javadoc:javadoc
+
 after_success:
-  - mvn clean apache-rat:check test jacoco:report coveralls:report
+  - mvn clean test jacoco:report coveralls:report


[2/3] [text] pom.xml: make checkstyle plugin run-able outside of the site phase

Posted by pa...@apache.org.
pom.xml: make checkstyle plugin run-able outside of the site phase


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

Branch: refs/heads/master
Commit: 2bd24caaf8629f94e7adb5c23f7477139828f385
Parents: cc9dc64
Author: Pascal Schumacher <pa...@gmx.net>
Authored: Sun Mar 19 19:23:39 2017 +0100
Committer: Pascal Schumacher <pa...@gmx.net>
Committed: Sun Mar 19 19:23:39 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/commons-text/blob/2bd24caa/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 58ec51a..c339a6e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -138,6 +138,8 @@
 
     <!-- Override 01-23-2017 for java 9-ea compatibility -->
     <commons.jacoco.version>0.7.8</commons.jacoco.version>
+
+    <checkstyle.plugin.version>2.13</checkstyle.plugin.version>
   </properties>
 
 
@@ -160,6 +162,17 @@
     </pluginManagement>
     <plugins>
       <plugin>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <version>${checkstyle.plugin.version}</version>
+        <configuration>
+          <enableRulesSummary>false</enableRulesSummary>
+          <configLocation>${basedir}/checkstyle.xml</configLocation>
+          <headerLocation>${basedir}/license-header.txt</headerLocation>
+          <suppressionsLocation>${basedir}/checkstyle-suppressions.xml</suppressionsLocation>
+          <suppressionsFileExpression>${basedir}/checkstyle-suppressions.xml</suppressionsFileExpression>
+        </configuration>
+      </plugin>
+      <plugin>
         <artifactId>maven-assembly-plugin</artifactId>
         <configuration>
           <descriptors>
@@ -197,7 +210,7 @@
     <plugins>
       <plugin>
         <artifactId>maven-checkstyle-plugin</artifactId>
-        <version>2.13</version>
+        <version>${checkstyle.plugin.version}</version>
         <configuration>
           <enableRulesSummary>false</enableRulesSummary>
           <configLocation>${basedir}/checkstyle.xml</configLocation>