diff --git a/src/org/openbravo/base/TestFile.java b/src/org/openbravo/base/TestFile.java
new file mode 100644
index 0000000000..b9929462a8
--- /dev/null
+++ b/src/org/openbravo/base/TestFile.java
@@ -0,0 +1,20 @@
+package org.openbravo.base;
+
+/**
+ * Problematic import, org.w3c.dom.html already exists in jdk 9+,
+ * As it is present in xercesImpl.jar also,
+ * it will generate errors in ECJ when compiling with java 9+
+ */
+
+import org.w3c.dom.html.HTMLDOMImplementation;
+
+/**
+ * This class will generate errors in ECJ(Eclipse's Java Compiler)
+ * because of conflicting java packages
+ */
+class TestFile{
+  TestFile(){
+    System.out.println(HTMLDOMImplementation.class);
+  }
+}
+
