Some simple building notes and indentation fixes
authorGeorgios Gousios <gousiosg@gmail.com>
Fri, 16 Sep 2011 06:28:27 +0000 (09:28 +0300)
committerGeorgios Gousios <gousiosg@gmail.com>
Fri, 16 Sep 2011 06:28:27 +0000 (09:28 +0300)
README
model/src/test/scala/gr/grnet/aquarium/model/test/JPATest.scala

diff --git a/README b/README
index b5b0134..29650f6 100644 (file)
--- a/README
+++ b/README
@@ -1,7 +1,13 @@
-Welcome to the Lift JPA Archetype. To run the sample app:
+Aquarium
+--------
+
+Aquarium offers resource sharing and charging services for all services
+in the Okeanos cloud.
+
+Building
+--------
+
+-Install Java 1.6 and Maven 3
+-Run mvn install
 
-mvn install
-cd web
-mvn jetty:run
 
-Then point your favorite browser to http://localhost:9090/
\ No newline at end of file
index b05073a..462df70 100644 (file)
@@ -88,7 +88,11 @@ class TestJPAWeb {
 
     //Entity navigation tests
     val all = DB.findAll[ServiceItem]("allServiceItems")
-    all.foreach(f => asScalaSet(f.configItems).foreach(i => assertFalse(i.quantity <= 0)))
+    all.foreach {
+      f => asScalaSet(f.configItems).foreach {
+        i => assertFalse(i.quantity <= 0)
+      }
+    }
   }
 
   @After