pan3793 commented on pull request #849:
URL: https://github.com/apache/incubator-kyuubi/pull/849#issuecomment-885205787


   Deploy SNAPSHOT process: 
https://infra.apache.org/publishing-maven-artifacts.html
   
   TL;DR
   1. setup gpg and maven auth
   ```
   <settings>
   ...
     <servers>
       <!-- To publish a snapshot of your project -->
       <server>
         <id>apache.snapshots.https</id>
         <username> <!-- YOUR APACHE LDAP USERNAME --> </username>
         <password> <!-- YOUR APACHE LDAP PASSWORD (encrypted) --> </password>
       </server>
       <!-- To stage a release of your project -->
       <server>
         <id>apache.releases.https</id>
         <username> <!-- YOUR APACHE LDAP USERNAME --> </username>
         <password> <!-- YOUR APACHE LDAP PASSWORD (encrypted) --> </password>
       </server>
      ...
     </servers>
   </settings>
   ```
   2. `mvn deploy 
-Papache-release,kyuubi-extension-spark_3.1,spark-block-cleaner,tpcds 
-DskipTests`
   
   I'm going to learn how other mature TLP (i.e. spark, flink) do the release, 
and a serial of following PRs will be sent in next few days.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to