You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2018/04/27 19:18:05 UTC

svn commit: r1830387 - /pivot/trunk/build.xml

Author: rwhitcomb
Date: Fri Apr 27 19:18:05 2018
New Revision: 1830387

URL: http://svn.apache.org/viewvc?rev=1830387&view=rev
Log:
PIVOT-1032:  Update the list of files to check for "check-style" to eliminate
extraneous ones that may be in the build area.

Modified:
    pivot/trunk/build.xml

Modified: pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/pivot/trunk/build.xml?rev=1830387&r1=1830386&r2=1830387&view=diff
==============================================================================
--- pivot/trunk/build.xml (original)
+++ pivot/trunk/build.xml Fri Apr 27 19:18:05 2018
@@ -995,7 +995,8 @@ limitations under the License.
     <target name="check-style">
         <cs:checkstyle config="pivot_checks.xml" failOnViolation="false">
             <fileset dir=".">
-                <include name="**/*.java"/>
+                <include name="**/src/org/**/*.java"/>
+                <include name="**/test/org/**/*.java"/>
             </fileset>
             <cs:formatter type="plain" toFile="style_errors.log"/>
         </cs:checkstyle>