Skip to content

Commit

Permalink
[ENGOPS-1571] updated checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Maring committed Nov 9, 2015
1 parent fc4ea82 commit 98335f8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,13 @@ dependency.pdi-palo-plugin.revision=6.1-SNAPSHOT
dependency.launcher.revision=6.1-SNAPSHOT

# Checkstyle Properties
checkstyle.version=6.12
pentaho.coding.standards.version=1.0.1
checkstyle.dir=${basedir}/checkstyle
checkstyle.lib.dir=${checkstyle.dir}/lib
checkstyle.reports.dir=${checkstyle.dir}/reports
checkstyle.config.url=http://ci.pentaho.com/job/pentaho-coding-standards/lastSuccessfulBuild/artifact/pentaho_checkStyle.xml
checkstyle.suppressions.url=http://ci.pentaho.com/job/pentaho-coding-standards/lastSuccessfulBuild/artifact/suppressions.xml
checkstyle.config.file=${checkstyle.dir}/pentaho_checkStyle.xml
checkstyle.config.url=http://nexus.pentaho.org/content/repositories/public-release/com/pentaho/pentaho-coding-standards/pentaho-checkstyle/${pentaho.coding.standards.version}/pentaho-checkstyle-${pentaho.coding.standards.version}.xml
checkstyle.suppressions.url=http://nexus.pentaho.org/content/repositories/public-release/com/pentaho/pentaho-coding-standards/pentaho-checkstyle-suppressions/${pentaho.coding.standards.version}/pentaho-checkstyle-suppressions-${pentaho.coding.standards.version}.xml
checkstyle.config.file=${checkstyle.dir}/pentaho-checkstyle-${pentaho.coding.standards.version}.xml
checkstyle.suppressions.file=${checkstyle.dir}/suppressions.xml
checkstyle.stylesheet.file=${basedir}/build-res/checkstyle/checkstyle-noframes-sorted.xsl
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@
<mkdir dir="${checkstyle.dir}/lib"/>
<ivy-resolve directory="${checkstyle.lib.dir}" ivyfile="${ivyfile}" conf="checkstyle"/>

<taskdef resource="checkstyletask.properties">
<taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties">
<classpath>
<fileset dir="${checkstyle.lib.dir}" includes="*.jar"/>
</classpath>
Expand Down
6 changes: 4 additions & 2 deletions ivy.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0">
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="pentaho" module="pentaho-kettle" revision="${project.revision}" />
<configurations>
<conf name="default" />
Expand All @@ -25,7 +25,9 @@
<dependency org="org.mockito" name="mockito-all" rev="1.9.5" transitive="false" conf="test->default"/>
<dependency org="org.eclipse.jetty" name="test-jetty-servlet" rev="8.1.15.v20140411" transitive="false" conf="test->default"/>
<dependency org="net.sourceforge.nekohtml" name="nekohtml" rev="1.9.7" transitive="false" conf="test->default"/>
<dependency org="com.puppycrawl.tools" name="checkstyle" rev="5.7" transitive="true" conf="checkstyle->default"/>
<dependency org="com.puppycrawl.tools" name="checkstyle" rev="${checkstyle.version}" transitive="true" conf="checkstyle->default">
<artifact name="checkstyle" ext="jar" m:classifier="all"/>
</dependency>

<!-- Apache Mina for settling up SFTP and FTPS servers' instances -->
<dependency org="org.apache.sshd" name="sshd-sftp" rev="0.11.0" conf="test->default" transitive="true" />
Expand Down

0 comments on commit 98335f8

Please sign in to comment.