Use 2 space indentation, add license notice and move schema to main code 
diff --git a/gora-lucene/src/main/resources/gora-lucene.xsd b/gora-lucene/src/main/resources/gora-lucene.xsd
new file mode 100644
index 0000000..62bfba2
--- /dev/null
+++ b/gora-lucene/src/main/resources/gora-lucene.xsd
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
+  <xs:element name="gora-otd" type="lucene-mapping"/>
+    
+  <xs:complexType name="lucene-mapping">
+    <xs:sequence>
+      <xs:element name="class" type="class-mapping" maxOccurs="unbounded"/>
+    </xs:sequence>
+  </xs:complexType>
+    
+  <xs:complexType name="class-mapping">
+    <xs:sequence>
+      <xs:element name="primarykey" type="primarykey-mapping"/>
+      <xs:element name="field" type="field-mapping" maxOccurs="unbounded"/>
+    </xs:sequence>
+    <xs:attribute name="name" type="nameClass-types" use="required"/> 
+    <xs:attribute name="keyClass" type="keyClass-types" use="required"/>
+  </xs:complexType>
+    
+  <xs:complexType name="primarykey-mapping">
+    <xs:attribute name="column" type="xs:string" use="required"/> 
+  </xs:complexType>
+    
+  <xs:complexType name="field-mapping">
+    <xs:attribute name="name" type="fieldName-types" use="required"/> 
+    <xs:attribute name="column" type="xs:string" use="required"/> 
+  </xs:complexType>
+    
+  <xs:simpleType name="keyClass-types">
+    <xs:restriction base="xs:string">
+      <xs:enumeration value="java.lang.String"/>
+      <xs:enumeration value="java.lang.Integer"/>
+    </xs:restriction>
+  </xs:simpleType>
+    
+  <xs:simpleType name="nameClass-types">
+    <xs:restriction base="xs:string">
+      <xs:pattern value="([\p{L}_$][\p{L}\p{N}_$]*\.)*[\p{L}_$][\p{L}\p{N}_$]*"/>
+    </xs:restriction>
+  </xs:simpleType>
+    
+  <xs:simpleType name="fieldName-types">
+    <xs:restriction base="xs:string">
+      <xs:pattern value="[a-zA-Z][a-zA-Z0-9]*"/>
+    </xs:restriction>
+  </xs:simpleType>
+    
+</xs:schema> 
diff --git a/gora-lucene/src/test/conf/gora-lucene.xsd b/gora-lucene/src/test/conf/gora-lucene.xsd
deleted file mode 100644
index f82f015..0000000
--- a/gora-lucene/src/test/conf/gora-lucene.xsd
+++ /dev/null
@@ -1,42 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
-
-    <xs:element name="gora-otd" type="lucene-mapping"/>
-    <xs:complexType name="lucene-mapping">
-        <xs:sequence>
-            <xs:element name="class" type="class-mapping" maxOccurs="unbounded"/>
-        </xs:sequence>
-    </xs:complexType>
-    <xs:complexType name="class-mapping">
-        <xs:sequence>
-            <xs:element name="primarykey" type="primarykey-mapping"/>
-            <xs:element name="field" type="field-mapping" maxOccurs="unbounded"/>
-        </xs:sequence>
-        <xs:attribute name="name" type="nameClass-types" use="required"/> 
-        <xs:attribute name="keyClass" type="keyClass-types" use="required"/>
-    </xs:complexType>
-    <xs:complexType name="primarykey-mapping">
-        <xs:attribute name="column" type="xs:string" use="required"/> 
-    </xs:complexType>
-    <xs:complexType name="field-mapping">
-        <xs:attribute name="name" type="fieldName-types" use="required"/> 
-        <xs:attribute name="column" type="xs:string" use="required"/> 
-    </xs:complexType>
-    
-    <xs:simpleType name="keyClass-types">
-        <xs:restriction base="xs:string">
-            <xs:enumeration value="java.lang.String"/>
-            <xs:enumeration value="java.lang.Integer"/>
-        </xs:restriction>
-    </xs:simpleType>
-    <xs:simpleType name="nameClass-types">
-        <xs:restriction base="xs:string">
-            <xs:pattern value="([\p{L}_$][\p{L}\p{N}_$]*\.)*[\p{L}_$][\p{L}\p{N}_$]*"/>
-        </xs:restriction>
-    </xs:simpleType>
-    <xs:simpleType name="fieldName-types">
-        <xs:restriction base="xs:string">
-            <xs:pattern value="[a-zA-Z][a-zA-Z0-9]*"/>
-        </xs:restriction>
-    </xs:simpleType>
-</xs:schema>