Bug 443174: Make default skipTests to false

Plugins that cannot run exclude themselves from execution,
but default behaviour when not overriden is to run the tests,
as Maven best practices and common usage dictates.

Signed-off-by: Mickael Istria <mistria@redhat.com>
diff --git a/org.eclipse.ua.tests.doc/pom.xml b/org.eclipse.ua.tests.doc/pom.xml
index a5c4827..b79038a 100644
--- a/org.eclipse.ua.tests.doc/pom.xml
+++ b/org.eclipse.ua.tests.doc/pom.xml
@@ -21,4 +21,9 @@
   <artifactId>org.eclipse.ua.tests.doc</artifactId>
   <version>1.0.200-SNAPSHOT</version>
   <packaging>eclipse-test-plugin</packaging>
+
+  <properties>
+    <!-- Tests not yet ready for surefire -->
+    <skipTests>true</skipTests>
+  </properties>
 </project>
diff --git a/org.eclipse.ua.tests/pom.xml b/org.eclipse.ua.tests/pom.xml
index 80ab230..24cd47f 100644
--- a/org.eclipse.ua.tests/pom.xml
+++ b/org.eclipse.ua.tests/pom.xml
@@ -21,4 +21,9 @@
   <artifactId>org.eclipse.ua.tests</artifactId>
   <version>3.3.800-SNAPSHOT</version>
   <packaging>eclipse-test-plugin</packaging>
+
+  <properties>
+    <!-- Tests not yet ready for surefire -->
+    <skipTests>true</skipTests>
+  </properties>
 </project>
diff --git a/pom.xml b/pom.xml
index 30da0e4..f25fa89 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,6 +24,8 @@
   <packaging>pom</packaging>
   <properties>
     <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/platform/eclipse.platform.ua.git</tycho.scmUrl>
+    <!-- See bug 443174 - remove when parent pom doesn't set skipTests to true -->
+    <skipTests>false</skipTests>
   </properties>
 
   <!--