You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2017/07/03 09:38:07 UTC

[2/2] syncope git commit: Minor fixes for the release process

Minor fixes for the release process


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

Branch: refs/heads/2_0_X
Commit: f5fc2f1661e2c2bcc2862ce678378ade8cc121ce
Parents: 162a67f
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Mon Jul 3 11:37:43 2017 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Mon Jul 3 11:37:43 2017 +0200

----------------------------------------------------------------------
 ide/netbeans/pom.xml              | 4 ++--
 src/site/xdoc/downloads.xml       | 4 ++--
 src/site/xdoc/release-process.xml | 8 ++++----
 3 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/f5fc2f16/ide/netbeans/pom.xml
----------------------------------------------------------------------
diff --git a/ide/netbeans/pom.xml b/ide/netbeans/pom.xml
index f136eb3..bab1e91 100644
--- a/ide/netbeans/pom.xml
+++ b/ide/netbeans/pom.xml
@@ -23,8 +23,8 @@ under the License.
     <version>2.0.5-SNAPSHOT</version>
   </parent>
 
-  <name>Apache Syncope IDE Netbeans plugin</name>
-  <description>Apache Syncope IDE Netbeans plugin</description>
+  <name>Apache Syncope IDE Netbeans Plugin</name>
+  <description>Apache Syncope IDE Netbeans Plugin</description>
   <groupId>org.apache.syncope.ide</groupId>
   <artifactId>syncope-ide-netbeans</artifactId>
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/f5fc2f16/src/site/xdoc/downloads.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/downloads.xml b/src/site/xdoc/downloads.xml
index 91c4edb..7c1084d 100644
--- a/src/site/xdoc/downloads.xml
+++ b/src/site/xdoc/downloads.xml
@@ -148,8 +148,8 @@ under the License.
               </td>
               <td>
                 <a href="https://www.apache.org/dist/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.asc">asc</a> 
-                <a href="https://www.apache.org/dist/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.zip.md5">md5</a> 
-                <a href="https://www.apache.org/dist/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.zip.sha1">sha1</a>
+                <a href="https://www.apache.org/dist/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.md5">md5</a> 
+                <a href="https://www.apache.org/dist/syncope/2.0.4/syncope-ide-netbeans-2.0.4.nbm.sha1">sha1</a>
               </td>
             </tr>
           </tbody>

http://git-wip-us.apache.org/repos/asf/syncope/blob/f5fc2f16/src/site/xdoc/release-process.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/release-process.xml b/src/site/xdoc/release-process.xml
index 107b36a..626480b 100644
--- a/src/site/xdoc/release-process.xml
+++ b/src/site/xdoc/release-process.xml
@@ -288,19 +288,19 @@ cp $SYNCOPE_RELEASE_DIR/client/cli/target/syncope-client-cli-*.zip .
 cp $SYNCOPE_RELEASE_DIR/client/cli/target/syncope-client-cli-*.zip.asc .
 cp $SYNCOPE_RELEASE_DIR/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/target/org.apache.syncope.ide.eclipse.site-*.zip .
 cp $SYNCOPE_RELEASE_DIR/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/target/org.apache.syncope.ide.eclipse.site-*.zip.asc .
-cp $SYNCOPE_RELEASE_DIR/ide/netbeans/target/syncope-ide-netbeans-*.nbm .
-cp $SYNCOPE_RELEASE_DIR/ide/netbeans/target/syncope-ide-netbeans-*.nbm.asc .
+cp $SYNCOPE_RELEASE_DIR/ide/netbeans/target/nbm/syncope-ide-netbeans-*.nbm .
+cp $SYNCOPE_RELEASE_DIR/ide/netbeans/target/nbm/syncope-ide-netbeans-*.nbm.asc .
               
 for file in `find . -type f -iname '*.asc'`
 do
   gpg --verify ${file} 
 done
           
-for file in `find . -name '*.deb' -or -name '*.jar' -or -name '*.zip'`; do
+for file in `find . -name '*.deb' -or -name '*.jar' -or -name '*.zip' -or -name '*.nbm'`; do
  openssl md5 $file | sed 's/.*= //' > $file.md5
  openssl sha1 $file | sed 's/.*= //' > $file.sha1
 done
-              
+
 cd ..
 svn add $VERSION
 svn commit -m "Staging artifacts for $VERSION vote"]]></source>