You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/03/24 10:12:29 UTC

[royale-compiler] branch develop updated: make wagon deploy without required a pom.xml

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/develop by this push:
     new 215a409  make wagon deploy without required a pom.xml
215a409 is described below

commit 215a409f9ce46b3bf18bc72053f0af780fa2e905
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Tue Mar 24 11:12:25 2020 +0100

    make wagon deploy without required a pom.xml
---
 releasesteps.xml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/releasesteps.xml b/releasesteps.xml
index dbe68c2..10ef88a 100644
--- a/releasesteps.xml
+++ b/releasesteps.xml
@@ -384,12 +384,13 @@
     <target name="Release_Step_003_Upload" depends="get-artifact-folder">
         <fail message="release.version not specified"
             unless="release.version"/>
-        <exec executable="${mvn}" dir="${artifactfolder}/sources" failonerror="true" >
+        <exec executable="${mvn}" failonerror="true" >
             <arg value="wagon:upload" />
             <arg value="-X" />
             <arg value="-Dwagon.fromDir=${artifactfolder}/artifacts/archive/target/local-release-dir" />
-            <arg value="-P" />
-            <arg value="_releasesteps-upload-release-to-staging" />
+            <arg value="-Dwagon.url=https://repository.apache.org/service/local/staging/deploy/maven2" />
+            <arg value="-Dwagon.serverId=apache.releases.https" />
+            <arg value="-Dwagon.includes=**" />
         </exec>
     </target>