Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Dirigible/Infrastructure/Update Downloads"

m
Line 6: Line 6:
  
 
==== Local Build ====
 
==== Local Build ====
    mvn clean install -P content
 
 
     mvn clean install
 
     mvn clean install
    mvn clean install -P trial
 
    mvn clean install -P sap
 
    mvn clean install -P iam
 
 
----
 
----
  
Line 28: Line 24:
  
 
==== Sonatype Repository for Maven Central ====
 
==== Sonatype Repository for Maven Central ====
    cd releng/all.tomcat/
 
 
     mvn deploy -P release
 
     mvn deploy -P release
  
     https://oss.sonatype.org/#nexus-search;quick~dirigible  -> release
+
     https://oss.sonatype.org/#nexus-search;quick~dirigible  -> close & release
  
  

Revision as of 12:01, 20 November 2017

Update Downloads

Reset to Branch

   git clone -b <branch> https://github.com/eclipse/dirigible.git

Local Build

   mvn clean install

Prepare for Upload

   cp -R <dirigible/dist/*> <for_upload>/<version_folder>

For releases <version_folder> should be named as follows:

   R-<major>.<minor>-<datetime tag> e.g. R-2.1-201510071717

For milestones <version_folder> should be named as follows:

   M<date tag>-< time tag> e.g. M20151117-1717

Remote Copy

   cd <for_upload>
   scp -r <version_folder> <user>@build.eclipse.org:~/downloads/dirigible/drops/<version_folder>

Sonatype Repository for Maven Central

   mvn deploy -P release
   https://oss.sonatype.org/#nexus-search;quick~dirigible  -> close & release


Set Access

   ssh <user>@build.eclipse.org
   cd ~/downloads/dirigible/drops/
   chmod -R +r ./<version_folder>/
   chmod -R +x ./<version_folder>/

Check Structure

   http://download.eclipse.org/dirigible/

Downloads Check Tool

https://www.eclipse.org/projects/tools/downloads.php?id=ecd.dirigible

Downloads Statistics

https://dev.eclipse.org/committers/committertools/stats.php

Back to the top