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"

(Initial skeletton for Wiki page)
 
m (fixes heading depth)
Line 1: Line 1:
 +
== Winery Code Setup Guide ==
  
== Winery ==
+
=== Repositories ===
 
+
 
+
=== Winery Code Setup Guide ===
+
 
+
==== 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 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].
  
===== org.eclipse.winery.misc =====
+
==== org.eclipse.winery.misc ====
  
 
Contains documentation, eclipse configuration, graphics, and the high level REST API package
 
Contains documentation, eclipse configuration, graphics, and the high level REST API package
  
===== org.eclipse.winery.models =====
+
==== org.eclipse.winery.models ====
  
 
Contains models:
 
Contains models:
Line 21: Line 17:
 
* TOSCA
 
* TOSCA
  
===== org.eclipse.winery.winery =====
+
==== org.eclipse.winery.winery ====
  
 
Contains the winery itself.
 
Contains the winery itself.
  
=== Compilation instructions ===
+
== Compilation instructions ==
  
==== Make models available ====
+
=== Make models available ===
  
 
For each model in <tt>org.eclipse.winery.models</tt> do a <tt>mvn install</tt>.
 
For each model in <tt>org.eclipse.winery.models</tt> do a <tt>mvn install</tt>.
  
==== Compile winery ====
+
=== Compile winery ===
  
 
In <tt>org.eclipse.winery.models</tt>, see the [http://git.eclipse.org/c/winery/org.eclipse.winery.winery.git/plain/README.md README.md] there.
 
In <tt>org.eclipse.winery.models</tt>, see the [http://git.eclipse.org/c/winery/org.eclipse.winery.winery.git/plain/README.md README.md] there.

Revision as of 08:32, 28 March 2014

Winery Code Setup Guide

Repositories

Winery is split into three repositories: misc, models, and winery.

org.eclipse.winery.misc

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 org.eclipse.winery.models do a mvn install.

Compile winery

In org.eclipse.winery.models, see the README.md there.

Back to the top