Better documentation for our examples
Just playing around how this renders on github ;)
diff --git a/rest-trivial/rest-trivial.adoc b/rest-trivial/rest-trivial.adoc
new file mode 100644
index 0000000..b895781
--- /dev/null
+++ b/rest-trivial/rest-trivial.adoc
@@ -0,0 +1,11 @@
+= Apache Meecrowave
+
+== Trivial REST Example
+
+This example shows probably the smallest JavaEE REST Service.
+It is the REST version of the famous 'Hello World' program.
+It contains just a <<src/main/java/com/superbiz/jaxrs/HelloEndpoint.java,Hello Resource>>.
+The important parst of this class are the @Path(`"hello")` and the `@GET' annotated method.
+
+Note that the Resource is a CDI bean annotated with `@ApplicationScoped`.
+Thus only one instance exists.
\ No newline at end of file
diff --git a/rest/pom.xml b/rest/pom.xml
index 6bf61b2..b729df3 100644
--- a/rest/pom.xml
+++ b/rest/pom.xml
@@ -12,4 +12,5 @@
<artifactId>samples-rest</artifactId>
<name>REST</name>
+
</project>
\ No newline at end of file