vmassol 2002/08/28 13:50:06
Modified: framework build.xml
Log:
* rename aspects in .aj (instead of .java) for better IDE non-support :-)
* updated checkstyle properties for new coding conventions
Revision Changes Path
1.25 +5 -4 jakarta-cactus/framework/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/framework/build.xml,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- build.xml 30 Jul 2002 20:17:19 -0000 1.24
+++ build.xml 28 Aug 2002 20:50:06 -0000 1.25
@@ -250,8 +250,7 @@
<mkdir dir="${clover.db.dir}"/>
<property name="clover.excludes"
-
value="**/*Aspect.java,**/Test*.java,**/Mock*.java,**/AssertUtils.java,**/ClientCookie.java"/>
-
+
value="**/*Aspect.*,**/Test*.java,**/Mock*.java,**/AssertUtils.java,**/ClientCookie.java"/>
</target>
<!--
@@ -308,7 +307,7 @@
<!-- We exclude the Logging Aspect as it adds 2 new methods for
each method to log and thus leads to flawed test coverage
statistics -->
- <exclude name="**/LogAspect.java"/>
+ <exclude name="**/LogAspect.*"/>
<classpath refid="project.class.path"/>
</ajc>
@@ -595,6 +594,8 @@
<checkstyle
lcurlyType="nl"
lcurlyMethod="nl"
+ lcurlyOther="nl"
+ rcurly="alone"
allowProtected="true"
ignoreLineLengthPattern="(@version.*\$Id|@see)"
paramPattern="^(the|is|has)[A-Z][a-zA-Z0-9]*$"
@@ -606,7 +607,7 @@
<fileset dir="${src.java.dir}">
<include name="**/*.java"/>
- <exclude name="**/*Aspect.java"/>
+ <exclude name="**/*Aspect.*"/>
</fileset>
<fileset dir="${src.test.dir}">
<include name="**/*.java"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>