You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2009/10/23 13:29:31 UTC

svn commit: r829005 - in /jackrabbit/trunk: RELEASE-NOTES.txt assembly.xml pom.xml

Author: jukka
Date: Fri Oct 23 11:29:31 2009
New Revision: 829005

URL: http://svn.apache.org/viewvc?rev=829005&view=rev
Log:
Updated release notes and added an assembly for automatically creating the source release archive.

Added:
    jackrabbit/trunk/assembly.xml   (with props)
Modified:
    jackrabbit/trunk/RELEASE-NOTES.txt
    jackrabbit/trunk/pom.xml

Modified: jackrabbit/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/RELEASE-NOTES.txt?rev=829005&r1=829004&r2=829005&view=diff
==============================================================================
--- jackrabbit/trunk/RELEASE-NOTES.txt (original)
+++ jackrabbit/trunk/RELEASE-NOTES.txt Fri Oct 23 11:29:31 2009
@@ -1,17 +1,13 @@
-Release Notes -- Apache Jackrabbit -- Version 2.0-alpha12
+Release Notes -- Apache Jackrabbit -- Version 2.0-beta1
 
 Introduction
 ------------
 
-This is an alpha release of Apache Jackrabbit 2.0. This release implements
-a pre-release version of the JCR 2.0 API, specified by the Java Specification
-Request 283 (JSR 283, http://jcp.org/en/jsr/detail?id=283).
-
-The purpose of this alpha release is to allow people to test and review
-the new Jackrabbit and JCR 2.0 features before they are finalized. Feedback
-to both the Jackrabbit project and the JSR 283 expert group is highly
-appreciated. Note that an alpha release is not expected to be feature-complete
-or otherwise suitable for production use.
+This is a beta release of Apache Jackrabbit 2.0. This release is a fully
+compliant implementation of the JCR 2.0 API that was specified by the
+Java Specification Request 283 (JSR 283, http://jcp.org/en/jsr/detail?id=283).
+However, the beta status of this release means that some parts of the
+implementation are not yet ready for normal production use.
 
 Changes in this release
 -----------------------
@@ -50,7 +46,7 @@
 Release Contents
 ----------------
 
-This release consists of a single source archive packaged as a jar file.
+This release consists of a single source archive packaged as a zip file.
 The archive can be unpacked with the jar tool from your JDK installation.
 See the README.txt file for instructions on how to build this release.
 

Added: jackrabbit/trunk/assembly.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/assembly.xml?rev=829005&view=auto
==============================================================================
--- jackrabbit/trunk/assembly.xml (added)
+++ jackrabbit/trunk/assembly.xml Fri Oct 23 11:29:31 2009
@@ -0,0 +1,32 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<assembly>
+  <id>src</id>
+  <formats>
+    <format>zip</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <directory>${project.basedir}</directory>
+      <outputDirectory></outputDirectory>
+      <excludes>
+        <exclude>**/target/**</exclude>
+        <exclude>**/.*/**</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+</assembly>
\ No newline at end of file

Propchange: jackrabbit/trunk/assembly.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: jackrabbit/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/pom.xml?rev=829005&r1=829004&r2=829005&view=diff
==============================================================================
--- jackrabbit/trunk/pom.xml (original)
+++ jackrabbit/trunk/pom.xml Fri Oct 23 11:29:31 2009
@@ -74,4 +74,30 @@
     </plugins>
   </build>
 
+  <profiles>
+    <profile>
+      <id>apache-release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <phase>package</phase>
+                <configuration>
+                  <descriptors>
+                    <descriptor>assembly.xml</descriptor>
+                  </descriptors>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
 </project>