You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by ph...@apache.org on 2010/04/12 08:17:26 UTC

svn commit: r933101 - in /hadoop/zookeeper/branches/branch-3.3: CHANGES.txt README.txt build.xml

Author: phunt
Date: Mon Apr 12 06:17:26 2010
New Revision: 933101

URL: http://svn.apache.org/viewvc?rev=933101&view=rev
Log:
ZOOKEEPER-720. Use zookeeper-{version}-sources.jar instead of zookeeper-{version}-src.jar to publish sources in the Maven repository

Modified:
    hadoop/zookeeper/branches/branch-3.3/CHANGES.txt
    hadoop/zookeeper/branches/branch-3.3/README.txt
    hadoop/zookeeper/branches/branch-3.3/build.xml

Modified: hadoop/zookeeper/branches/branch-3.3/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/zookeeper/branches/branch-3.3/CHANGES.txt?rev=933101&r1=933100&r2=933101&view=diff
==============================================================================
--- hadoop/zookeeper/branches/branch-3.3/CHANGES.txt (original)
+++ hadoop/zookeeper/branches/branch-3.3/CHANGES.txt Mon Apr 12 06:17:26 2010
@@ -6,6 +6,10 @@ BUGFIXES:
   ZOOKEEPER-735. cppunit test testipv6 assumes that the machine is ipv6
   enabled. (mahadev)
 
+  ZOOKEEPER-720. Use zookeeper-{version}-sources.jar instead of
+  zookeeper-{version}-src.jar to publish sources in the Maven repository
+  (paolo via phunt)
+
 Release 3.3.0 - 2010-03-24
 
 Non-backward compatible changes:

Modified: hadoop/zookeeper/branches/branch-3.3/README.txt
URL: http://svn.apache.org/viewvc/hadoop/zookeeper/branches/branch-3.3/README.txt?rev=933101&r1=933100&r2=933101&view=diff
==============================================================================
--- hadoop/zookeeper/branches/branch-3.3/README.txt (original)
+++ hadoop/zookeeper/branches/branch-3.3/README.txt Mon Apr 12 06:17:26 2010
@@ -21,12 +21,12 @@ zookeeper-<version>.jar         - legacy
                                   a result
 
 zookeeper-<version>-bin.jar     - contains only class (*.class) files
-zookeeper-<version>-src.jar     - contains only src (*.java) files
+zookeeper-<version>-sources.jar - contains only src (*.java) files
 zookeeper-<version>-javadoc.jar - contains only javadoc files
 
-The bin/src/javadoc jars were added specifically to support Maven/Ivy which have the
-ability to pull these down automatically as part of your build process. The content
-of the legacy jar and the bin+src jar are the same.
+The bin/src/javadoc jars were added specifically to support Maven/Ivy which have 
+the ability to pull these down automatically as part of your build process. 
+The content of the legacy jar and the bin+sources jar are the same.
 
-As of version 3.3.0 bin/src/javadoc jars are deployed to the Apache Maven repository.
-  http://people.apache.org/repo/m2-ibiblio-rsync-repository/
+As of version 3.3.0 bin/sources/javadoc jars are deployed to the Apache Maven 
+repository: http://people.apache.org/repo/m2-ibiblio-rsync-repository/

Modified: hadoop/zookeeper/branches/branch-3.3/build.xml
URL: http://svn.apache.org/viewvc/hadoop/zookeeper/branches/branch-3.3/build.xml?rev=933101&r1=933100&r2=933101&view=diff
==============================================================================
--- hadoop/zookeeper/branches/branch-3.3/build.xml (original)
+++ hadoop/zookeeper/branches/branch-3.3/build.xml Mon Apr 12 06:17:26 2010
@@ -511,10 +511,10 @@
     </target>
 
 	<!-- ====================================================== -->
-    <!-- Make zookeeper-src.jar                                 -->
+    <!-- Make zookeeper-sources.jar                                 -->
     <!-- ====================================================== -->
     <target name="src-jar" depends="build-generated">
-        <jar jarfile="${build.dir}/${final.name}-src.jar">
+        <jar jarfile="${build.dir}/${final.name}-sources.jar">
             <fileset file="LICENSE.txt" />
             <fileset dir="${java.src.dir}"/>
             <fileset dir="${src_generated.dir}" excludes="**/.generated"/>
@@ -583,7 +583,7 @@
       <copy todir="${dist.dir}"> 
         <fileset file="${build.dir}/${final.name}.jar"/>
         <fileset file="${build.dir}/${final.name}-bin.jar"/>
-        <fileset file="${build.dir}/${final.name}-src.jar"/>
+        <fileset file="${build.dir}/${final.name}-sources.jar"/>
         <fileset file="${build.dir}/${final.name}-javadoc.jar"/>
       </copy>
       
@@ -591,8 +591,8 @@
       <checksum file="${dist.dir}/${final.name}.jar" algorithm="sha1"/>
       <checksum file="${dist.dir}/${final.name}-bin.jar" algorithm="md5"/>
       <checksum file="${dist.dir}/${final.name}-bin.jar" algorithm="sha1"/>
-      <checksum file="${dist.dir}/${final.name}-src.jar" algorithm="md5"/>
-      <checksum file="${dist.dir}/${final.name}-src.jar" algorithm="sha1"/>
+      <checksum file="${dist.dir}/${final.name}-sources.jar" algorithm="md5"/>
+      <checksum file="${dist.dir}/${final.name}-sources.jar" algorithm="sha1"/>
       <checksum file="${dist.dir}/${final.name}-javadoc.jar" algorithm="md5"/>
       <checksum file="${dist.dir}/${final.name}-javadoc.jar" algorithm="sha1"/>