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/08/10 19:23:27 UTC

svn commit: r430448 - in /jakarta/httpcomponents/httpcore/trunk: ./ src/assembly/ src/java/ src/main/ src/main/assembly/ src/main/java/ src/main/java/org/ src/main/java/org/apache/http/impl/entity/ src/test/java/ src/test/java/org/ src/test/java/org/ap...

Author: olegk
Date: Thu Aug 10 10:23:26 2006
New Revision: 430448

URL: http://svn.apache.org/viewvc?rev=430448&view=rev
Log:
Changed to the directory layout compliant with the Maven2 guidelines

Added:
    jakarta/httpcomponents/httpcore/trunk/src/main/
    jakarta/httpcomponents/httpcore/trunk/src/main/assembly/
      - copied from r429122, jakarta/httpcomponents/httpcore/trunk/src/assembly/
    jakarta/httpcomponents/httpcore/trunk/src/main/assembly/bin.xml
      - copied unchanged from r430447, jakarta/httpcomponents/httpcore/trunk/src/assembly/bin.xml
    jakarta/httpcomponents/httpcore/trunk/src/main/assembly/src.xml
      - copied unchanged from r430447, jakarta/httpcomponents/httpcore/trunk/src/assembly/src.xml
    jakarta/httpcomponents/httpcore/trunk/src/main/java/
      - copied from r429122, jakarta/httpcomponents/httpcore/trunk/src/java/
    jakarta/httpcomponents/httpcore/trunk/src/main/java/org/
      - copied from r430447, jakarta/httpcomponents/httpcore/trunk/src/java/org/
    jakarta/httpcomponents/httpcore/trunk/src/test/java/
    jakarta/httpcomponents/httpcore/trunk/src/test/java/org/
      - copied from r429122, jakarta/httpcomponents/httpcore/trunk/src/test/org/
    jakarta/httpcomponents/httpcore/trunk/src/test/java/org/apache/
      - copied from r430447, jakarta/httpcomponents/httpcore/trunk/src/test/org/apache/
Removed:
    jakarta/httpcomponents/httpcore/trunk/src/assembly/
    jakarta/httpcomponents/httpcore/trunk/src/java/
    jakarta/httpcomponents/httpcore/trunk/src/test/org/
Modified:
    jakarta/httpcomponents/httpcore/trunk/pom.xml
    jakarta/httpcomponents/httpcore/trunk/src/main/java/org/apache/http/impl/entity/DefaultEntitySerializer.java

Modified: jakarta/httpcomponents/httpcore/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/httpcore/trunk/pom.xml?rev=430448&r1=430447&r2=430448&view=diff
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/pom.xml (original)
+++ jakarta/httpcomponents/httpcore/trunk/pom.xml Thu Aug 10 10:23:26 2006
@@ -33,18 +33,26 @@
     <url>http://www.apache.org/</url>
   </organization>
   <build>
-    <sourceDirectory>src/java</sourceDirectory>
-    <testSourceDirectory>src/test</testSourceDirectory>
-    <testResources>
-      <testResource>
-        <directory>src/test</directory>
-        <includes>
-          <include>**/TestAll.java</include>
-        </includes>
-      </testResource>
-    </testResources>
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.3</source>
+          <target>1.3</target>
+          <optimize>true</optimize>
+          <showDeprecations>true</showDeprecations>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>**/TestAll.java</include>
+          </includes>
+        </configuration>
+      </plugin>
+      <plugin>
         <artifactId>maven-javadoc-plugin</artifactId>
       </plugin>
       <plugin>
@@ -60,8 +68,8 @@
         <artifactId>maven-assembly-plugin</artifactId>
         <configuration>
           <descriptors>
-            <descriptor>src/assembly/bin.xml</descriptor>
-            <descriptor>src/assembly/src.xml</descriptor>
+            <descriptor>src/main/assembly/bin.xml</descriptor>
+            <descriptor>src/main/assembly/src.xml</descriptor>
           </descriptors>
         </configuration>
       </plugin>
@@ -123,8 +131,4 @@
       <url>scp://people.apache.org/www/www.apache.org/dist/maven-repository</url>
     </repository>
   </distributionManagement>
-  <properties>
-    <maven.compile.source>1.3</maven.compile.source>
-    <maven.compile.target>1.3</maven.compile.target>
-  </properties>
-</project>
\ No newline at end of file
+</project>

Modified: jakarta/httpcomponents/httpcore/trunk/src/main/java/org/apache/http/impl/entity/DefaultEntitySerializer.java
URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/httpcore/trunk/src/main/java/org/apache/http/impl/entity/DefaultEntitySerializer.java?rev=430448&r1=430447&r2=430448&view=diff
==============================================================================
--- jakarta/httpcomponents/httpcore/trunk/src/main/java/org/apache/http/impl/entity/DefaultEntitySerializer.java (original)
+++ jakarta/httpcomponents/httpcore/trunk/src/main/java/org/apache/http/impl/entity/DefaultEntitySerializer.java Thu Aug 10 10:23:26 2006
@@ -50,7 +50,7 @@
  * 
  * @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
  *
- * @version $Revision: $
+ * @version $Revision$
  * 
  * @since 4.0
  */