Added 'quickbuild' profile for fast builds without tests
diff --git a/parent/pom.xml b/parent/pom.xml
index 27820a4..e65597b 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -1821,13 +1821,23 @@
                     <url>file://${java.io.tmpdir}${file.separator}repo</url>
                 </snapshotRepository>
             </distributionManagement>
+        </profile>
 
+        <profile>
+            <!-- Quickbuild without tests -->
+            <id>quickbuild</id>
+            <activation>
+                <property>
+                    <name>quick</name>
+                    <value>true</value>
+                </property>
+            </activation>
+
+            <properties>
+                <skipTests>true</skipTests>
+                <skipITs>true</skipITs>
+            </properties>
         </profile>
     </profiles>
 
-<!--
-    <scm>
-        <tag>3.1.0</tag>
-    </scm>
--->
 </project>