disable AvoidUsingOctalValues rule as we have lots of octal constants

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/compress/trunk@1150547 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pmd-ruleset.xml b/pmd-ruleset.xml
new file mode 100644
index 0000000..9fda8f1
--- /dev/null
+++ b/pmd-ruleset.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0"?>
+<ruleset name="compress"
+    xmlns="http://pmd.sf.net/ruleset/1.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
+    xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd">
+  <description>Standard Ruleset but excluding the "no octal
+    constants" rule</description>
+  <rule ref="rulesets/basic.xml">
+    <exclude name="AvoidUsingOctalValues"/>
+  </rule>
+  <rule ref="rulesets/finalizers.xml"/>
+  <rule ref="rulesets/imports.xml"/>
+  <rule ref="rulesets/unusedcode.xml"/>
+</ruleset>