Home Index Changes Prefs Log in »
This is version 1. It is not the current version, and thus it cannot be edited.
[Back to current version]   [Restore this version]

GlassFish V3 Developer Instruction

First, make sure your maven can find artifacts from the java.net maven2 repository. This is done by making sure that your ~/.m2/setggins.xml has a proper entry like this:

<settings>
  ...
  <profiles>
    <profile>
        <id>v3</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <repository>
          <id>java.net2</id>
	  &lt;url>https://maven2-repository.dev.java.net/nonav/repository</url>
        &lt;/repository>
      &lt;/repositories>
    &lt;/profile&gt;
  &lt;/profiles&gt;
&lt;/settings&gt;

Next, check out the part of the glassfish that you are interested in working on. For example, if you are working on appserv-webtier, you'd do the following.

cvs -d :pserver:@{user.name}@cvs.dev.java.net:/cvs co -r GF_V3_PREWORK_BRANCH glassfish/appserv-webtier

« Home Attachments Info Index Changes Prefs
This particular version was published on 16-Mar-07 12:11 PM, -0700 by Kohsuke Kawaguchi