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)
Line 1: Line 1:
 +
 
== Development Environment ==
 
== Development Environment ==
 
* Corona is based upon Eclipse v3.2 (or later).
 
* Corona is based upon Eclipse v3.2 (or later).
Line 4: Line 5:
 
** Components requiring JDK 1.5 should be in their own bundles
 
** Components requiring JDK 1.5 should be in their own bundles
  
=== CVS Structure ===
+
== 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 ==
 
<pre>
 
<pre>
 
org.eclipse.corona
 
org.eclipse.corona

Revision as of 08:47, 17 May 2006

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