Author: fmui
Date: Sat May 15 14:48:59 2010
New Revision: 944653
URL: http://svn.apache.org/viewvc?rev=944653&view=rev
Log:
added release notes placeholder
Added:
incubator/chemistry/opencmis/trunk/RELEASE-NOTES.txt
Modified:
incubator/chemistry/opencmis/trunk/release-tool/build.xml
Added: incubator/chemistry/opencmis/trunk/RELEASE-NOTES.txt
URL:
http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/RELEASE-NOTES.txt?rev=944653&view=auto
==============================================================================
--- incubator/chemistry/opencmis/trunk/RELEASE-NOTES.txt (added)
+++ incubator/chemistry/opencmis/trunk/RELEASE-NOTES.txt Sat May 15 14:48:59
2010
@@ -0,0 +1,23 @@
+Apache Chemistry OpenCMIS 0.1-incubating Release Notes
+=======================================================
+
+This is the initial release of OpenCMIS, a Java implementation of the CMIS
(Content Management Interoperability Services) specification.
+
+See http://incubator.apache.org/chemistry/opencmis.html for details.
+
+
+Dependencies
+============
+
+Server and client:
+- Java 5 or higher
+- Apache Commons Codec 1.4 or higher
+- Apache Commons Logging 1.1.1 or higher
+- JAX-WS RI 2.1.7 or higher
+
+Server only:
+- Servlet API 2.4 or higher
+- ANTLR 3.1.3 or higher
+
+
+
Modified: incubator/chemistry/opencmis/trunk/release-tool/build.xml
URL:
http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/release-tool/build.xml?rev=944653&r1=944652&r2=944653&view=diff
==============================================================================
--- incubator/chemistry/opencmis/trunk/release-tool/build.xml (original)
+++ incubator/chemistry/opencmis/trunk/release-tool/build.xml Sat May 15
14:48:59 2010
@@ -30,7 +30,7 @@
<property name="release.basedir" value="${basedir}" />
<property name="release.dir" value="${release.basedir}/release" />
<property name="svn.dir" value="${release.basedir}/svn" />
- <property name="doc.dir" value="${release.basedir}/doc" />
+ <property name="doc.dir" value="${release.basedir}/docs" />
<property name="pack.dir" value="${release.basedir}/pack" />
<!-- tools -->
@@ -144,15 +144,17 @@
<!-- copy everything -->
<copy todir="${pack.dir}" file="${svn.dir}/LICENSE.txt" />
<copy todir="${pack.dir}" file="${svn.dir}/NOTICE.txt" />
-
+ <copy todir="${pack.dir}" file="${svn.dir}/RELEASE-NOTES.txt" />
+
<copy todir="${pack.dir}/src">
<fileset dir="${svn.dir}">
<exclude name="LICENSE.txt"/>
<exclude name="NOTICE.txt"/>
+ <exclude name="RELEASE-NOTES.txt"/>
<exclude name="**/.svn/**"/>
<exclude name="**/target/**"/>
<exclude name="**/_dev/**"/>
- <exclude name="**/release-tools/**"/>
+ <exclude name="**/release-tool/**"/>
</fileset>
</copy>