o Added stub IT profile to highlight plugins during CI

git-svn-id: https://svn.apache.org/repos/asf/maven/plugins/trunk@683667 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
index 16f87a2..492cca7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -228,4 +228,34 @@
   <properties>
     <maven-scm.version>1.0</maven-scm.version>
   </properties>
+
+  <profiles>
+    <profile>
+      <id>run-its</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>integration-test</id>
+                <phase>integration-test</phase>
+                <configuration>
+                  <tasks>
+                    <echo/><echo/><echo/><echo/><echo/>
+                    <echo level="warning">NO INTEGRATION TESTS DEFINED</echo>
+                    <echo/><echo/><echo/><echo/><echo/>
+                  </tasks>
+                </configuration>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>