This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/syncope.git
The following commit(s) were added to refs/heads/master by this push: new f3f6690 Upgrading Tika, maven-checkstyle-plugin f3f6690 is described below commit f3f6690675021a90f534c4c6ba105d67d8a5c4af Author: Francesco Chicchiriccò <ilgro...@apache.org> AuthorDate: Mon May 20 11:07:36 2019 +0200 Upgrading Tika, maven-checkstyle-plugin --- pom.xml | 9 +++++++-- src/main/resources/org/apache/syncope/checkstyle.xml | 11 ++++------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index 8e4cdf5..2b0cc2d 100644 --- a/pom.xml +++ b/pom.xml @@ -429,7 +429,7 @@ under the License. <commons-text.version>1.6</commons-text.version> <commons-logging.version>1.1.3</commons-logging.version> - <tika.version>1.20</tika.version> + <tika.version>1.21</tika.version> <joda.version>2.10.2</joda.version> @@ -2121,7 +2121,7 @@ under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> - <version>3.0.0</version> + <version>3.1.0</version> <configuration> <configLocation>${rootpom.basedir}/src/main/resources/org/apache/syncope/checkstyle.xml</configLocation> <targetJdk>${targetJdk}</targetJdk> @@ -2520,6 +2520,11 @@ under the License. </reportSet> </reportSets> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + <version>3.0.0</version> + </plugin> </plugins> </reporting> diff --git a/src/main/resources/org/apache/syncope/checkstyle.xml b/src/main/resources/org/apache/syncope/checkstyle.xml index 27be37a..012e3f3 100644 --- a/src/main/resources/org/apache/syncope/checkstyle.xml +++ b/src/main/resources/org/apache/syncope/checkstyle.xml @@ -46,6 +46,9 @@ under the License. --> <module name="Checker"> + + <property name="cacheFile" value="target/checkstyle.cache"/> + <!-- If you set the basedir property below, then all reported file names will be relative to the specified directory. See @@ -83,12 +86,8 @@ under the License. <property name="message" value="Line has trailing spaces."/> </module> - <module name="SuppressionCommentFilter"/> - <module name="TreeWalker"> - <property name="cacheFile" value="target/checkstyle.cache"/> - <!-- Checks for Javadoc comments. --> <!-- See http://checkstyle.sf.net/config_javadoc.html --> <!--<module name="JavadocMethod"> @@ -116,7 +115,7 @@ under the License. <property name="format" value="^[A-Z][A-Z0-9_]*$"/> </module> <module name="TypeName"/> - + <module name="SuppressionCommentFilter"/> <!-- Checks for Headers --> <!-- See http://checkstyle.sf.net/config_header.html --> @@ -219,8 +218,6 @@ under the License. <module name="FinalParameters"/> <module name="TodoComment"/> <module name="UpperEll"/> - - <module name="FileContentsHolder"/> </module> </module>