SLING-11934 - Disable invoker ITs on Windows (#14)

This will be re-enabled once we have the tests running as expected on Jenkins.
diff --git a/pom.xml b/pom.xml
index ccb9614..b5503c9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -194,4 +194,19 @@
             </plugin>
         </plugins>
     </reporting>
+
+    <profiles>
+        <!-- remove once SLING-11934 is fixed -->
+        <profile>
+            <id>skip-invoker-windows</id>
+            <activation>
+                <os>
+                    <family>Windows</family>
+                </os>
+            </activation>
+            <properties>
+                <invoker.skip>true</invoker.skip>
+            </properties>
+        </profile>
+    </profiles>
 </project>