You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/11/18 19:49:28 UTC

svn commit: r881872 - /cxf/trunk/buildtools/src/main/resources/cxf-eclipse-checkstyle

Author: dkulp
Date: Wed Nov 18 18:49:27 2009
New Revision: 881872

URL: http://svn.apache.org/viewvc?rev=881872&view=rev
Log:
Checkstyle in eclipse is complaining about the new properties files for
some oddball reason.   We really just want to check .java so we'll do
that.

Modified:
    cxf/trunk/buildtools/src/main/resources/cxf-eclipse-checkstyle

Modified: cxf/trunk/buildtools/src/main/resources/cxf-eclipse-checkstyle
URL: http://svn.apache.org/viewvc/cxf/trunk/buildtools/src/main/resources/cxf-eclipse-checkstyle?rev=881872&r1=881871&r2=881872&view=diff
==============================================================================
--- cxf/trunk/buildtools/src/main/resources/cxf-eclipse-checkstyle (original)
+++ cxf/trunk/buildtools/src/main/resources/cxf-eclipse-checkstyle Wed Nov 18 18:49:27 2009
@@ -24,4 +24,7 @@
         <file-match-pattern match-pattern="^src[/\\]test[/\\]generated[/\\]." include-pattern="false"/>
         <file-match-pattern match-pattern="^src[/\\]main[/\\]release[/\\]samples[/\\]jax_rs[/\\]basic_https[/\\]contrib[/\\]." include-pattern="false"/>
     </fileset>
+    <filter name="FileTypesFilter" enabled="true">
+        <filter-data value="java"/>
+    </filter>
 </fileset-config>
\ No newline at end of file