Don't deploy on release
diff --git a/my-app/pom.xml b/my-app/pom.xml
index 9ac9aca..f3817b4 100644
--- a/my-app/pom.xml
+++ b/my-app/pom.xml
@@ -1,13 +1,10 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
-                             http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <!-- Testing more and more and more and more -->
   <modelVersion>4.0.0</modelVersion>
   <groupId>com.mycompany.app</groupId>
   <artifactId>my-app</artifactId>
   <packaging>jar</packaging>
-  <version>1.1-SNAPSHOT</version>
+  <version>1.2-SNAPSHOT</version>
   <name>my-app</name>
   <url>http://maven.apache.org</url>
   <build>
@@ -16,6 +13,9 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-release-plugin</artifactId>
           <version>2.5</version>
+          <configuration>
+            <goals>install</goals>
+          </configuration>
         </plugin>
   </plugins>
   </build>
@@ -29,12 +29,6 @@
   </dependencies>
   <scm>
     <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/ceej-gerrit-test</developerConnection>
+    <tag>HEAD</tag>
   </scm>
- <distributionManagement>
-    <repository>
-      <id>test</id>
-      <name>test</name>
-      <url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
-    </repository>
-  </distributionManagement>
 </project>