Add initial readme.md file.
diff --git a/pom.xml b/pom.xml
index 6e87260..96b779e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,18 +40,21 @@
                 <artifactId>maven-bundle-plugin</artifactId>
                 <extensions>true</extensions>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>readme.md</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 
     <dependencies>
         <dependency>
             <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.core</artifactId>
-            <version>6.0.0</version>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.osgi</groupId>
             <artifactId>org.osgi.annotation.versioning</artifactId>
             <scope>provided</scope>
         </dependency>
diff --git a/readme.md b/readme.md
new file mode 100644
index 0000000..4695cff
--- /dev/null
+++ b/readme.md
@@ -0,0 +1,3 @@
+# Feature Model Resolver
+
+The Feature Model Resolver can resolve features and pre-calculate the ideal order to start features. 
\ No newline at end of file