Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. bootstrap clean
  2. bootstrap specs
  3. bootstrap modules
  4. bootstrap openejb2
  5. bootstrap assemble Note

    for bootstrap specs you need Java 1.5.

Distribution binaries

The binaries for distribution can be found in the *.zip and *.tar.gz formats in following places

...

Note

In order to run with the simple geronimo prefix, you need to add a pluginGroup for org.apache.geronimo.plugins to your ~/.m2/settings.xml:

Code Block
xml
xml
<?xml version="1.0"?>
<settings>
    <pluginGroups>
        <pluginGroup>org.apache.geronimo.plugins</pluginGroup>
    </pluginGroups>
</settings>
Tip
titleWindows Tip

Windows users will find ~/.m2/ under c:\documents and settings\<username>\.m2.

If you don't want to add this to your local settings you can still enable the tools profile, which will register the prefixes.

...

Anchor
advanced
advanced

For the Advanced Users

Installing Ant is not necessary. Checkout specs and openejb2 using:

No Format
svn co http://svn.apache.org/repos/asf/geronimo/specs/trunk specs
svn co https://svn.apache.org/repos/asf/incubator/openejb/trunk/openejb2 openejb2

Building specs

If you do not care about JEE 1.5 comment out the following lines in specs/pom.xml -

...

specs

...

No Format
cd specs
mvn clean install

...

Add a profile to the top level pom.xml like this:

Code Block
xml
xml
        <profile>
            <id>build-all</id>

            <activation>
                <property>
                    <name>all</name>
                </property>
            </activation>

            <modules>
                <module>testsupport</module>
                <module>modules</module>
                <module>maven-plugins</module>
                <module>applications</module>
                <module>openejb2</module>
                <module>configs</module>
                <module>assemblies</module>
            </modules>
        </profile>

Build geronimo and openejb2 from the top directory using:

No Format
 
mvn -Dall clean install or 

or:

No Format
 
mvn -Dall

Other Useful commands

...