You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by cu...@apache.org on 2013/07/20 00:10:10 UTC

svn commit: r1505051 - in /openjpa/trunk: openjpa-examples/pom.xml openjpa-project/suppressions.xml

Author: curtisr7
Date: Fri Jul 19 22:10:10 2013
New Revision: 1505051

URL: http://svn.apache.org/r1505051
Log:
OPENJPA-2410 : Yet another checkstyle update. Should fix nix issues.

Modified:
    openjpa/trunk/openjpa-examples/pom.xml
    openjpa/trunk/openjpa-project/suppressions.xml

Modified: openjpa/trunk/openjpa-examples/pom.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-examples/pom.xml?rev=1505051&r1=1505050&r2=1505051&view=diff
==============================================================================
--- openjpa/trunk/openjpa-examples/pom.xml (original)
+++ openjpa/trunk/openjpa-examples/pom.xml Fri Jul 19 22:10:10 2013
@@ -40,9 +40,8 @@
 
     <properties>
         <openjpa.Log>DefaultLevel=WARN</openjpa.Log>
-        <!-- Not sure if using \ here will cause problems with running on *nix. Windows has a bug when using / -->
-        <checkstyle.config.location>${project.basedir}\..\..\openjpa-project\checkstyle.xml</checkstyle.config.location>
-        <checkstyle.suppressions.location>${project.basedir}\..\..\openjpa-project\suppressions.xml</checkstyle.suppressions.location>
+        <checkstyle.config.location>${project.basedir}${file.separator}..${file.separator}..${file.separator}openjpa-project${file.separator}checkstyle.xml</checkstyle.config.location>
+        <checkstyle.suppressions.location>${project.basedir}${file.separator}..${file.separator}..${file.separator}openjpa-project${file.separator}suppressions.xml</checkstyle.suppressions.location>
     </properties>
 
     <modules>

Modified: openjpa/trunk/openjpa-project/suppressions.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/suppressions.xml?rev=1505051&r1=1505050&r2=1505051&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/suppressions.xml (original)
+++ openjpa/trunk/openjpa-project/suppressions.xml Fri Jul 19 22:10:10 2013
@@ -8,5 +8,6 @@
 	<suppress checks="RegexpSinglelineJava" files=".*openjpa-examples\\.*java" />
 	<suppress checks="RegexpSinglelineJava" files="Test.*java" />
 	<suppress checks="RegexpSinglelineJava" files=".*src\\test.*java" />
+        <suppress checks="RegexpSinglelineJava" files=".*src.test.*java" />
 	<suppress checks="RegexpSinglelineJava" files="Main.java" />
 </suppressions>