Merge pull request #9 from cesarhernandezgt/version-fixes

fixed pom typo and revert openejb and tomee to version 8.0.0-SNAPSHOT. Removed implicity -U on maven command.
diff --git a/pom.xml b/pom.xml
index 9849e8c..f93d4c5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,8 +38,8 @@
   <properties>
 
     <openejb.groupId>org.apache.tomee</openejb.groupId>
-    <openejb.version>8.0.0-M2</openejb.version>
-    <tomee.version>8.0.0-M2</tomee.version>
+    <openejb.version>8.0.0-SNAPSHOT</openejb.version>
+    <tomee.version>8.0.0-SNAPSHOT</tomee.version>
 
     <tomcat.version>9.0.12</tomcat.version>
 
@@ -50,7 +50,7 @@
     -->
     <javaee.cts.home>${javaee8.cts.home}</javaee.cts.home>
     <javaee.ri.home>${javaee8.ri.home}</javaee.ri.home>
-    <javaee.tck.version>8.0a</javaee.tck.version>
+    <javaee.tck.version>8.0</javaee.tck.version>
 
     <localRepository>${settings.localRepository}</localRepository>
     <examples.version>1.1-SNAPSHOT</examples.version>
diff --git a/runtests b/runtests
index fb82cb4..8c4ee1a 100755
--- a/runtests
+++ b/runtests
@@ -330,7 +330,7 @@
 
 # Fire up Maven to do the real work
 if [ -z $nc ]; then
-exec mvn -U -V --file "$DIRNAME/pom.xml" \
+exec mvn -V --file "$DIRNAME/pom.xml" \
       --batch-mode \
       --errors \
       $CONFIG \
@@ -346,7 +346,7 @@
                -e "s/\(\[ERROR\].*\)/${BOLD}${TEXT_RED}\1${RESET_FORMATTING}/g" \
                -e "s/Tests run: \([^,]*\), Failures: \([^,]*\), Errors: \([^,]*\), Skipped: \([^,]*\)/${BOLD}${TEXT_GREEN}Tests run: \1${RESET_FORMATTING}, Failures: ${BOLD}${TEXT_RED}\2${RESET_FORMATTING}, Errors: ${BOLD}${TEXT_RED}\3${RESET_FORMATTING}, Skipped: ${BOLD}${TEXT_YELLOW}\4${RESET_FORMATTING}/g"
 else
-exec mvn -U -V --file "$DIRNAME/pom.xml" \
+exec mvn -V --file "$DIRNAME/pom.xml" \
       --batch-mode \
       --errors \
       $CONFIG \