You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by Apache Wiki <wi...@apache.org> on 2006/11/04 06:39:46 UTC

[Myfaces Wiki] Update of "CoreRelease115" by WendySmoak

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Myfaces Wiki" for change notification.

The following page has been changed by WendySmoak:
http://wiki.apache.org/myfaces/CoreRelease115

New page:
== Notes on the MyFaces Core 1.1.5 Release ==

== Timeline ==

 * 2006-11-03 MyFaces 1.1.5-SNAPSHOT is on the trunk.  It depends on the Shared 2.0.4 ''branch''.

=== Issues ===

 * [http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10600&fixfor=12311960 Unresolved Issues]

 * [http://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12311960&styleName=Text&projectId=10600&Create=Create JIRA Release Notes]

=== Testing ===

Here's how you can help us test the distribution.

Download a nightly build of the distribution assemblies:
 * http://people.apache.org/builds/myfaces/nightly/

Configure a <repository> for Maven 2:
{{{
        <repository>
           <id>apache.snapshots</id>
           <name>Apache Snapshot Repository</name>
           <url>http://people.apache.org/repo/m2-snapshot-repository</url>
        </repository>
}}}
And declare a dependency on the 1.1.5 snapshots:
{{{
        <dependency>
            <groupId>org.apache.myfaces.core</groupId>
            <artifactId>myfaces-api</artifactId>
            <version>1.1.5-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.apache.myfaces.core</groupId>
            <artifactId>myfaces-impl</artifactId>
            <version>1.1.5-SNAPSHOT</version>
        </dependency>}}}

'''Note:''' Maven 2.0.4 will '''not''' download a new version if one is already present in your local repository.  You will need to '''delete''' $M2_REPO/org/apache/myfaces/core to force Maven to download the new version.  (Usually, $M2_REPO is <your home directory>/.m2/repository .)

Test your application, then, let us know the results (good or bad!) on ''dev -at- myfaces.apache.org''.  (You must be subscribed to post. See: http://myfaces.apache.org/mail-lists.html.)

== JIRA ==

 * Add a new version to the core project 1.1.5
 * Do a bulk change for all resolved issues with version fixed as 1.1.5-SNAPSHOT and change to 1.1.5
 * Do a bulk change for all resolved (but not closed) in 1.1.5 and close them
 * Archive the 1.1.5-SNAPSHOT version
 
== Deployment ==

To deploy the api and impl jars, including -sources and -javadocs, to http://people.apache.org/repo/m2-snapshot-repository:
{{{
   cd /path/to/SHARED_2_0_4
   mvn install
   cd /path/to/CORE_1_1_5
   mvn deploy -Pgenerate-assembly
}}}

To build and publish the -src and -bin assemblies to people.apache.org:
{{{
   cd /path/to/SHARED_2_0_4
   mvn install
   cd /path/to/CORE_1_1_5
   mvn install -Pgenerate-assembly
   cd assembly
   mvn assembly:assembly
   scp target/assembly/out/* people.apache.org:/www/people.apache.org/builds/myfaces/core-1.1.x
}}}

== Proposed Release Announcement ==