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 "Virgo/Source"

(Directory Organisation)
Line 115: Line 115:
 
= Directory Organisation  =
 
= Directory Organisation  =
  
A typical git repository is organised into the following directories:  
+
A typical git repository is organised into the following files and directories:  
<pre>build-xxx                         // top-level build directory
+
<pre>build-xxx/                        // top-level build directory
 
build.properties                  // properties substituted during build
 
build.properties                  // properties substituted during build
 
build.versions                    // dependency version properties
 
build.versions                    // dependency version properties
org.eclipse.virgo.xxx.yyy.zzz      // a project
+
org.eclipse.virgo.xxx.y.z/      // a project
 
...                                // more projects
 
...                                // more projects
virgo-build                       // git submodule
+
virgo-build/                      // git submodule
 +
</pre>
 +
Each project is organised into the following files and directories:
 +
<pre>.classpath                        // Eclipse build class path
 +
.project                          // Eclipse project metadata
 +
.settings/                        // Settings
 +
.springBeans                      // Spring tooling metadata
 +
build.xml                          // Ant build instructions
 +
ivy.xml                            // Ivy build dependencies
 +
src/main/java/                    // Runtime source
 +
src/main/resources/                // Runtime resources
 +
src/test/java/                    // Unit/integration test source
 +
src/test/resources/                // Unit/integration test resources
 +
template.mf                        // Bundlor template
 
</pre>  
 
</pre>  
 
[[Category:Virgo]] [[Category:EclipseRT]]
 
[[Category:Virgo]] [[Category:EclipseRT]]

Revision as of 11:45, 24 April 2010


Virgo git Repositories

The Virgo source code is organised into separate components each stored in a git repository. The Build tab details how to clone and build these components, but if you want a quick peek at the source code, follow the Short Name links in the table.

Short Name Description Anonymous: git clone Committer: git clone
web-server Web server packaging build
documentation End-user documentation
apps Virgo-supplied applications
web Web integration layer
kernel Kernel
artifact-repository Artifact repository
medic Diagnostics git://git.eclipse.org/gitroot/virgo/org.eclipse.virgo.medic.git ssh://committer_id@git.eclipse.org/gitroot/virgo/org.eclipse.virgo.medic.git
test Test framework git://git.eclipse.org/gitroot/virgo/org.eclipse.virgo.test.git ssh://committer_id@git.eclipse.org/gitroot/virgo/org.eclipse.virgo.test.git
util utilities git://git.eclipse.org/gitroot/virgo/org.eclipse.virgo.util.git ssh://committer_id@git.eclipse.org/gitroot/virgo/org.eclipse.virgo.util.git
osgi-extensions Launcher and Equinox hooks git://git.eclipse.org/gitroot/virgo/org.eclipse.virgo.osgi-extensions.git ssh://committer_id@git.eclipse.org/gitroot/virgo/org.eclipse.virgo.osgi-extensions.git
osgi-test-stubs Unit test stubs for common OSGi interfaces git://git.eclipse.org/gitroot/virgo/org.eclipse.virgo.osgi-test-stubs.git ssh://committer_id@git.eclipse.org/gitroot/virgo/org.eclipse.virgo.osgi-test-stubs.git
virgo-build Ant/Ivy based build system git://git.eclipse.org/gitroot/virgo/org.eclipse.virgo.virgo-build.git ssh://committer_id@git.eclipse.org/gitroot/virgo/org.eclipse.virgo.virgo-build.git
performance-test Performance tests
system-verification-tests SVT tests
kernel-system-verification-tests Kernel SVT tests
kernel-tools Tools integration layer
sample-greenpages Greenpages sample
sample-configuration-properties Configuration properties sample
sample-formtags Formtags sample
sample-osgi-examples OSGi samples

Directory Organisation

A typical git repository is organised into the following files and directories:

build-xxx/                        // top-level build directory
build.properties                   // properties substituted during build
build.versions                     // dependency version properties
org.eclipse.virgo.xxx.y.z/       // a project
...                                // more projects
virgo-build/                       // git submodule

Each project is organised into the following files and directories:

.classpath                         // Eclipse build class path
.project                           // Eclipse project metadata
.settings/                         // Settings
.springBeans                       // Spring tooling metadata
build.xml                          // Ant build instructions
ivy.xml                            // Ivy build dependencies
src/main/java/                     // Runtime source
src/main/resources/                // Runtime resources
src/test/java/                     // Unit/integration test source
src/test/resources/                // Unit/integration test resources
template.mf                        // Bundlor template

Back to the top