Disable archetype integration testing during release
diff --git a/taverna-activity-archetype/pom.xml b/taverna-activity-archetype/pom.xml
index 916a027..71d9271 100644
--- a/taverna-activity-archetype/pom.xml
+++ b/taverna-activity-archetype/pom.xml
@@ -111,4 +111,24 @@
       </dependency>
 
     </dependencies>
+    <profiles>
+      <profile>
+        <id>apache-release</id>
+        <build>
+            <plugins>
+                <plugin>
+                    <artifactId>maven-archetype-plugin</artifactId>
+                    <version>2.4</version>
+                    <configuration>
+		    <!-- disable archetype integration testing, can't access
+			 not-yet-released taverna-engine dependencies during
+                         mvn release:prepare
+                    -->
+                        <skip>true</skip>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </build>
+      </profile>
+    </profiles>
 </project>