Fixing LineLength checkstyle rule
diff --git a/buildtools/src/main/resources/cxf-checkstyle-corba.xml b/buildtools/src/main/resources/cxf-checkstyle-corba.xml
index 9c67835..3a96eec 100644
--- a/buildtools/src/main/resources/cxf-checkstyle-corba.xml
+++ b/buildtools/src/main/resources/cxf-checkstyle-corba.xml
@@ -18,8 +18,8 @@
 	under the License.
 -->
 <!DOCTYPE module PUBLIC
-    "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
-    "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
+    "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
+    "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
 
 <!--
 	Checks to make sure the code meets the CXF coding guidelines which 
@@ -106,9 +106,6 @@
 		<module name="ExecutableStatementCount">
 			<property name="max" value="75" />
 		</module>
-		<module name="LineLength">
-			<property name="max" value="120" />
-		</module>
 		<module name="MethodLength">
 			<property name="max" value="150" />
 			<property name="countEmpty" value="false" />
@@ -304,4 +301,7 @@
     <module name="FileTabCharacter">
       <property name="eachLine" value="true"/>
     </module>
+    <module name="LineLength">
+        <property name="max" value="120" />
+    </module>
 </module>
diff --git a/buildtools/src/main/resources/cxf-checkstyle.xml b/buildtools/src/main/resources/cxf-checkstyle.xml
index 0ce5f91..c0fc21f 100644
--- a/buildtools/src/main/resources/cxf-checkstyle.xml
+++ b/buildtools/src/main/resources/cxf-checkstyle.xml
@@ -18,8 +18,8 @@
 	under the License.
 -->
 <!DOCTYPE module PUBLIC
-    "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
-    "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
+    "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
+    "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
 
 <!--
 	Checks to make sure the code meets the CXF coding guidelines which 
@@ -103,9 +103,6 @@
 		<module name="ExecutableStatementCount">
 			<property name="max" value="75" />
 		</module>
-		<module name="LineLength">
-			<property name="max" value="120" />
-		</module>
 		<module name="MethodLength">
 			<property name="max" value="150" />
 			<property name="countEmpty" value="false" />
@@ -309,4 +306,7 @@
     <module name="FileTabCharacter">
       <property name="eachLine" value="true"/>
     </module>
+    <module name="LineLength">
+      <property name="max" value="120" />
+    </module>
 </module>