You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2006/04/13 11:23:02 UTC

svn commit: r393772 - in /jakarta/httpcomponents/httpcore/trunk: NOTICE.txt README.txt RELEASE_NOTES.txt pom.xml src/assembly/ src/assembly/bin.xml src/assembly/src.xml

Author: olegk
Date: Thu Apr 13 02:22:54 2006
New Revision: 393772

URL: http://svn.apache.org/viewcvs?rev=393772&view=rev
Log:
Added maven2 assembly descriptors, release notes, notice and readme files

Added:
    jakarta/httpcomponents/httpcore/trunk/NOTICE.txt   (with props)
    jakarta/httpcomponents/httpcore/trunk/README.txt   (with props)
    jakarta/httpcomponents/httpcore/trunk/RELEASE_NOTES.txt   (with props)
    jakarta/httpcomponents/httpcore/trunk/src/assembly/
    jakarta/httpcomponents/httpcore/trunk/src/assembly/bin.xml   (with props)
    jakarta/httpcomponents/httpcore/trunk/src/assembly/src.xml   (with props)
Modified:
    jakarta/httpcomponents/httpcore/trunk/pom.xml

Added: jakarta/httpcomponents/httpcore/trunk/NOTICE.txt
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/httpcore/trunk/NOTICE.txt?rev=393772&view=auto
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/NOTICE.txt (added)
+++ jakarta/httpcomponents/httpcore/trunk/NOTICE.txt Thu Apr 13 02:22:54 2006
@@ -0,0 +1,2 @@
+This product includes software developed by
+The Apache Software Foundation (http://www.apache.org/).

Propchange: jakarta/httpcomponents/httpcore/trunk/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/httpcomponents/httpcore/trunk/NOTICE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/httpcomponents/httpcore/trunk/NOTICE.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: jakarta/httpcomponents/httpcore/trunk/README.txt
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/httpcore/trunk/README.txt?rev=393772&view=auto
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/README.txt (added)
+++ jakarta/httpcomponents/httpcore/trunk/README.txt Thu Apr 13 02:22:54 2006
@@ -0,0 +1,9 @@
+Jakarta HttpComponents HttpCore
+===========================
+Welcome to the HttpCore component of the Jakarta HttpComponents
+project.
+
+Visit the project site at
+   http://jakarta.apache.org/httpcomponents/
+for more information.
+

Propchange: jakarta/httpcomponents/httpcore/trunk/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/httpcomponents/httpcore/trunk/README.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/httpcomponents/httpcore/trunk/README.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: jakarta/httpcomponents/httpcore/trunk/RELEASE_NOTES.txt
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/httpcore/trunk/RELEASE_NOTES.txt?rev=393772&view=auto
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/RELEASE_NOTES.txt (added)
+++ jakarta/httpcomponents/httpcore/trunk/RELEASE_NOTES.txt Thu Apr 13 02:22:54 2006
@@ -0,0 +1,10 @@
+Release 4.0 Alpha 1
+------------------
+
+This release represents a complete redesign of the Jakarta Commons HttpClient
+3.x API and a significant rewrite of the core HTTP components derived from 
+HttpClient 3.0 code base.
+
+These components will form the foundation of the future releases of Jakarta
+HttpClient and can also be used separately to build custom client- and 
+server-side HTTP services.

Propchange: jakarta/httpcomponents/httpcore/trunk/RELEASE_NOTES.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/httpcomponents/httpcore/trunk/RELEASE_NOTES.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/httpcomponents/httpcore/trunk/RELEASE_NOTES.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: jakarta/httpcomponents/httpcore/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/httpcore/trunk/pom.xml?rev=393772&r1=393771&r2=393772&view=diff
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/pom.xml (original)
+++ jakarta/httpcomponents/httpcore/trunk/pom.xml Thu Apr 13 02:22:54 2006
@@ -56,6 +56,15 @@
           <tagBase>https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpcore/tags/</tagBase>
         </configuration>
       </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptors>
+            <descriptor>src/assembly/bin.xml</descriptor>
+            <descriptor>src/assembly/src.xml</descriptor>
+          </descriptors>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <dependencies>

Added: jakarta/httpcomponents/httpcore/trunk/src/assembly/bin.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/httpcore/trunk/src/assembly/bin.xml?rev=393772&view=auto
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/src/assembly/bin.xml (added)
+++ jakarta/httpcomponents/httpcore/trunk/src/assembly/bin.xml Thu Apr 13 02:22:54 2006
@@ -0,0 +1,28 @@
+<assembly>
+    <id>bin</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <fileSets>
+        <fileSet>
+          <includes>
+            <include>README.txt</include>
+            <include>LICENSE.txt</include>
+            <include>NOTICE.txt</include>
+            <include>RELEASE_NOTES.txt</include>
+          </includes>
+        </fileSet>
+        <fileSet>
+          <directory>target</directory>
+          <outputDirectory></outputDirectory>
+          <includes>
+            <include>*.jar</include>
+          </includes>
+        </fileSet>
+        <fileSet>
+          <directory>target/javadoc</directory>
+          <outputDirectory>javadoc</outputDirectory>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: jakarta/httpcomponents/httpcore/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/httpcomponents/httpcore/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/httpcomponents/httpcore/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: jakarta/httpcomponents/httpcore/trunk/src/assembly/src.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/httpcore/trunk/src/assembly/src.xml?rev=393772&view=auto
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/src/assembly/src.xml (added)
+++ jakarta/httpcomponents/httpcore/trunk/src/assembly/src.xml Thu Apr 13 02:22:54 2006
@@ -0,0 +1,37 @@
+<assembly>
+    <id>src</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+    <fileSets>
+        <fileSet>
+          <includes>
+            <include>README.txt</include>
+            <include>LICENSE.txt</include>
+            <include>NOTICE.txt</include>
+            <include>RELEASE_NOTES.txt</include>
+            <include>pom.xml</include>
+          </includes>
+        </fileSet>
+        <fileSet>
+          <directory>target</directory>
+          <outputDirectory></outputDirectory>
+          <includes>
+            <include>*.jar</include>
+          </includes>
+        </fileSet>
+        <fileSet>
+          <directory>src/java</directory>
+          <outputDirectory>src</outputDirectory>
+        </fileSet>
+        <fileSet>
+          <directory>src/examples</directory>
+          <outputDirectory>examples</outputDirectory>
+        </fileSet>
+        <fileSet>
+          <directory>target/javadoc</directory>
+          <outputDirectory>javadoc</outputDirectory>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: jakarta/httpcomponents/httpcore/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/httpcomponents/httpcore/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/httpcomponents/httpcore/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml