Author: mck
Date: Wed Jul 20 23:26:29 2011
New Revision: 1148976
URL: http://svn.apache.org/viewvc?rev=1148976&view=rev
Log:
>From
>http://mail-archives.apache.org/mod_mbox/tiles-dev/201107.mbox/%3ccahtrnewnjiqczymry3snqkyfz8hd24q2bbq4rgematnjhg3...@mail.gmail.com%3E
> > > Embedded error: Failed during checkstyle configuration
> > > Property 'allowStaticMemberImports' in module AvoidStarImport does not
> > exist, please check the documentation
> >
> > But i can look into that later.
> >
>
> Again, I tried it with Eclipse and it worked, I did not test it with Maven.
> But probably I missed something.
Was introduced with checkstyle-5.3.
Which doesn't work with maven-checkstyle-plugin-2.6 (which still uses
checkstyle-5.0).
So i've commented out the allowStaticMemberImports property of
AvoidStarImport for now. Maybe the whole AvoidStarImport check should be
commented out?
Modified:
tiles/maven/trunk/build/tiles_checks_v5.xml
Modified: tiles/maven/trunk/build/tiles_checks_v5.xml
URL:
http://svn.apache.org/viewvc/tiles/maven/trunk/build/tiles_checks_v5.xml?rev=1148976&r1=1148975&r2=1148976&view=diff
==============================================================================
--- tiles/maven/trunk/build/tiles_checks_v5.xml (original)
+++ tiles/maven/trunk/build/tiles_checks_v5.xml Wed Jul 20 23:26:29 2011
@@ -36,7 +36,8 @@
<module name="StaticVariableName"/>
<module name="TypeName"/>
<module name="AvoidStarImport">
- <property name="allowStaticMemberImports" value="true"/>
+ <!-- doesn't work with maven-checkstyle-plugin-2.6 (was introduced
in checkstyle-5.3) -->
+ <!--property name="allowStaticMemberImports" value="true"/-->
</module>
<module name="IllegalImport"/>
<module name="RedundantImport"/>