Notes on the MyFaces Tomahawk 1.1.4 Release

Timeline

NOTE: Tomahawk 1.1.4-SNAPSHOT should be used with MyFaces Core 1.1.5-SNAPSHOT.

NOTE: This Tomahawk release is blocked until MyFaces 1.1.5 is released and TOMAHAWK-767 is resolved.

Issues

Testing

Here's how you can help us test the snapshots prior to a release:

Download distribution assembly snapshots:

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.4 snapshot:

        <dependency>
            <groupId>org.apache.myfaces.tomahawk</groupId>
            <artifactId>tomahawk</artifactId>
            <version>1.1.4-SNAPSHOT</version>
        </dependency>

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.)

Snapshots

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_BRANCH
   mvn install
   cd /path/to/TOMAHAWK_1_1_4_BRANCH
   mvn deploy -Pgenerate-assembly

To build and publish the -src and -bin assemblies to people.apache.org:

   cd /path/to/SHARED_2_0_4_BRANCH
   mvn install
   cd /path/to/TOMAHAWK_1_1_4_BRANCH
   mvn install -Pgenerate-assembly
   cd assembly
   mvn assembly:assembly
   scp target/assembly/out/* people.apache.org:/www/people.apache.org/builds/myfaces/tomahawk-1.1.x

TODO

  • No labels