You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2015/12/23 09:52:35 UTC

[1/2] wicket git commit: Add configuration for Maven deploy and gpg plugins.

Repository: wicket
Updated Branches:
  refs/heads/master 4f125657c -> d4c5ce705


Add configuration for Maven deploy and gpg plugins.

To make a release use: mvn clean source:jar javadoc:jar deploy


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/338a2bf5
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/338a2bf5
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/338a2bf5

Branch: refs/heads/master
Commit: 338a2bf509170f11e75b84b1c9f96c0d474c3da7
Parents: 4f12565
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Wed Dec 23 09:49:54 2015 +0100
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Wed Dec 23 09:49:54 2015 +0100

----------------------------------------------------------------------
 wicket-eclipse-settings/pom.xml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/338a2bf5/wicket-eclipse-settings/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-eclipse-settings/pom.xml b/wicket-eclipse-settings/pom.xml
index ee6d951..c783126 100644
--- a/wicket-eclipse-settings/pom.xml
+++ b/wicket-eclipse-settings/pom.xml
@@ -49,6 +49,35 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
             </plugin>
+            <plugin>
+              <inherited>true</inherited>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-deploy-plugin</artifactId>
+              <version>2.8.2</version>
+              <configuration>
+                  <updateReleaseInfo>true</updateReleaseInfo>
+              </configuration>
+              <executions>
+                  <execution>
+                      <goals>
+                          <goal>deploy</goal>
+                      </goals>
+                  </execution>
+              </executions>
+          </plugin>
+          <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-gpg-plugin</artifactId>
+              <version>1.6</version>
+              <executions>
+                  <execution>
+                      <id>sign-artifacts</id>
+                      <goals>
+                          <goal>sign</goal>
+                      </goals>
+                  </execution>
+              </executions>
+          </plugin>
         </plugins>
     </build>
 </project>


[2/2] wicket git commit: Add a release script to simplify the process for the next time.

Posted by mg...@apache.org.
Add a release script to simplify the process for the next time.

If Maven goals areexecuted in wrong order then the deploy phase signs for second time and breaks the signature.
More details at: http://stackoverflow.com/questions/33241549/maven-deploy-cause-code-repackaging-after-the-signing-operation-bad-signature


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/d4c5ce70
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/d4c5ce70
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/d4c5ce70

Branch: refs/heads/master
Commit: d4c5ce705d67f21952cb8181154e226bdd0f8abe
Parents: 338a2bf
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Wed Dec 23 09:51:16 2015 +0100
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Wed Dec 23 09:51:16 2015 +0100

----------------------------------------------------------------------
 wicket-eclipse-settings/release.sh | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/d4c5ce70/wicket-eclipse-settings/release.sh
----------------------------------------------------------------------
diff --git a/wicket-eclipse-settings/release.sh b/wicket-eclipse-settings/release.sh
new file mode 100644
index 0000000..095fced
--- /dev/null
+++ b/wicket-eclipse-settings/release.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+mvn clean source:jar javadoc:jar deploy
\ No newline at end of file