|
Size: 2906
Comment:
|
← Revision 7 as of 2009-09-20 23:00:41 ⇥
Size: 2914
Comment: converted to 1.6 markup
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 6: | Line 6: |
| * 2007-01-05 [http://svn.apache.org/viewvc?view=rev&rev=493274 Branched] for 1.1.4.1 by copying the tag for 1.1.4, r442016 * 2007-02-04 [http://www.nabble.com/MyFaces-1.1.4.1-is-dead.-t3170913.html Cancelled], see CoreRelease115. |
* 2007-01-05 [[http://svn.apache.org/viewvc?view=rev&rev=493274|Branched]] for 1.1.4.1 by copying the tag for 1.1.4, r442016 * 2007-02-04 [[http://www.nabble.com/MyFaces-1.1.4.1-is-dead.-t3170913.html|Cancelled]], see CoreRelease115. |
| Line 11: | Line 11: |
| * [http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10600&fixfor=12312259 Open Issues] * [http://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12312259&styleName=Text&projectId=10600&Create=Create Release Notes] |
* [[http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=10600&fixfor=12312259|Open Issues]] * [[http://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12312259&styleName=Text&projectId=10600&Create=Create|Release Notes]] |
Notes on the MyFaces Core 1.1.4.1 Release
Timeline
2007-01-04 Dev list discussion: http://www.nabble.com/Patch-Branch--t2922120.html
2007-01-05 Branched for 1.1.4.1 by copying the tag for 1.1.4, r442016
2007-02-04 Cancelled, see CoreRelease115.
Issues
Testing
Here's how you can help us test the distribution.
Download a snapshot of the distribution assemblies:
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.1 snapshots:
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-api</artifactId>
<version>1.1.4.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-impl</artifactId>
<version>1.1.4.1-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
- TBD
Deployment
To deploy the api and impl jars, including -sources and -javadocs, to http://people.apache.org/repo/m2-snapshot-repository:
cd /path/to/CORE_1_1_4_1 mvn deploy -Pgenerate-assembly
To build and publish the -src and -bin assemblies to people.apache.org:
cd /path/to/CORE_1_1_4_1 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
To fix permissions:
ssh people.apache.org 'chmod -Rf g+w /www/people.apache.org/repo/m2-snapshot-repository/org/apache/myfaces' ssh people.apache.org 'chmod -Rf g+w /www/people.apache.org/builds/myfaces'