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 "Corona Development"

m (Development Environment)
m
Line 1: Line 1:
 
+
<table border='1' cellpadding='3'>
 +
<tr>
 +
<td>[http://www.eclipse.org/corona|Eclipse Home]</td>
 +
<td>[[Corona|Wiki Home]]</td>
 +
<td>[[Corona Development Community|Development]]</td>
 +
</tr>
 +
</table>
 +
----
 
== Development Environment ==
 
== Development Environment ==
 
* Corona is based upon Eclipse v3.2 (or later).
 
* Corona is based upon Eclipse v3.2 (or later).

Revision as of 15:04, 17 May 2006

Home Wiki Home Development

Development Environment

  • Corona is based upon Eclipse v3.2 (or later).
  • All bundles and plugins should be compiled for JDK 1.4
    • Components requiring JDK 1.5 should be in their own bundles

Naming Convention

Corona introduces a new Eclipse server-side deployment environment. This requires Corona to develop and deploy both client-side and server-side components. All Corona plugins will use a qualifier to identify their target platform. The qualifiers are:

  • client
  • common
  • server

CVS Structure

org.eclipse.corona
+---build
+---examples
+---features
+---plugins
|   +---org.eclipse.corona.client.collaboration
|   +---org.eclipse.corona.client.collaboration.builder
|   +---org.eclipse.corona.client.ecf
|   +---org.eclipse.corona.common.collaboration
|   +---org.eclipse.corona.common.ecf
|   +---org.eclipse.corona.server.ecf
+---tests

Back to the top