diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 02e4edcba76e4b530bd9a70b39140f8a188115d0..5a4e7750c2512a6346c52edd11df6deee6480e93 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -70,6 +70,10 @@ deploy:
   stage: deploy
   before_script: *gpg-setup
   script:
-    - ./mvnw $MAVEN_CLI_OPTS deploy -DskipTests
+    - ./mvnw $MAVEN_CLI_OPTS deploy -DskipTests -X 2>&1 | tee mvn.log
+  artifacts:
+    paths:
+      - mvn.log
+    when: always
   needs:
     - package
diff --git a/api/pom.xml b/api/pom.xml
index b74319215b7aaf4d4e828f455ae62c20a94ecc70..e8fee6738b312168ef44be93dac077ed4f8cd68a 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <artifactId>sdk-java</artifactId>
         <groupId>dev.fitko.fitconnect.sdk</groupId>
-        <version>1.0.0-rc.1</version>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/client/pom.xml b/client/pom.xml
index 8646384e6bc82c454223ba70cf7d1e6e1380d6e8..ae7ddcc8f7ca0cb8ebd2ab71993c8674465d47aa 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <artifactId>sdk-java</artifactId>
         <groupId>dev.fitko.fitconnect.sdk</groupId>
-        <version>1.0.0-rc.1</version>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/core/pom.xml b/core/pom.xml
index e20d1860dc60d43da9c4a0aad23064189f9c3559..13a37d7751b08edadb8419ee6d0d8b8cef231c65 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <artifactId>sdk-java</artifactId>
         <groupId>dev.fitko.fitconnect.sdk</groupId>
-        <version>1.0.0-rc.1</version>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index d8fbddc67f4198b412838233e33cd000b5e59bb6..4c47622c0feb7c3b37a7af3a2f1c9a6880f0f5d4 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <artifactId>sdk-java</artifactId>
         <groupId>dev.fitko.fitconnect.sdk</groupId>
-        <version>1.0.0-rc.1</version>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <packaging>jar</packaging>
@@ -85,7 +85,7 @@
                 <groupId>org.sonatype.plugins</groupId>
                 <artifactId>nexus-staging-maven-plugin</artifactId>
                 <configuration>
-                    <skipStaging>true</skipStaging>
+                    <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
                 </configuration>
             </plugin>
         </plugins>
diff --git a/pom.xml b/pom.xml
index 84f8b33f832f743e57b089fb93caf622f3139cac..0bc3b6bb50e9adc7536f9e9a1903b15cf088e305 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
     <groupId>dev.fitko.fitconnect.sdk</groupId>
     <artifactId>sdk-java</artifactId>
     <packaging>pom</packaging>
-    <version>1.0.0-rc.1</version>
+    <version>1.0.0-SNAPSHOT</version>
 
     <name>FIT-Connect Java SDK</name>
     <description>Library for sending and subscribing to submissions of the FIT-Connect REST-API</description>