Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Winery/Code Setup Guide"

m (Fixes heading)
(Adapts to new repository structure)
Line 1: Line 1:
 
=== Repositories ===
 
=== Repositories ===
  
Winery is split into three repositories: [http://git.eclipse.org/c/winery/org.eclipse.winery.misc.git/ misc], [http://git.eclipse.org/c/winery/org.eclipse.winery.models.git/ models], and [http://git.eclipse.org/c/winery/org.eclipse.winery.winery.git/ winery].
+
Winery has a '''single''' repository: http://git.eclipse.org/c/winery/org.eclipse.winery.git/.
 
Check out each of it in a separate folder.
 
Check out each of it in a separate folder.
Under Windows, we recommend the parent folder to reside the root directory due to long path names during compilation: <tt>c:\wr</tt>
+
Under Windows, we recommend the folder to reside the root directory due to long path names during compilation: <tt>c:\wr</tt>
  
==== org.eclipse.winery.misc ====
+
The repository contains a [http://git.eclipse.org/c/winery/org.eclipse.winery.winery.git/plain/README.md README.md] stating the compilation instructions.
 
+
Contains documentation, eclipse configuration, graphics, and the high level REST API package
+
 
+
==== org.eclipse.winery.models ====
+
 
+
Contains models:
+
 
+
* CSAR meta file
+
* Self-service Portal
+
* TOSCA
+
 
+
==== org.eclipse.winery.winery ====
+
 
+
Contains the winery itself.
+
 
+
=== Compilation Instructions ===
+
 
+
==== Make Models Available ====
+
 
+
For each model in <tt>org.eclipse.winery.models</tt> do a <tt>mvn install</tt>.
+
 
+
==== Compile Winery ====
+
 
+
In <tt>org.eclipse.winery.winery</tt>, see the [http://git.eclipse.org/c/winery/org.eclipse.winery.winery.git/plain/README.md README.md] there.
+

Revision as of 15:09, 27 April 2014

Repositories

Winery has a single repository: http://git.eclipse.org/c/winery/org.eclipse.winery.git/. Check out each of it in a separate folder. Under Windows, we recommend the folder to reside the root directory due to long path names during compilation: c:\wr

The repository contains a README.md stating the compilation instructions.

Back to the top