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/03/21 12:08:37 UTC

svn commit: r387491 - /jakarta/httpcomponents/trunk/http-core/pom.xml

Author: olegk
Date: Tue Mar 21 03:08:35 2006
New Revision: 387491

URL: http://svn.apache.org/viewcvs?rev=387491&view=rev
Log:
Made pom.xml schema conformant

Contributed by Bindul Bhowmik <bindulbhowmik at gmail.com>

Modified:
    jakarta/httpcomponents/trunk/http-core/pom.xml

Modified: jakarta/httpcomponents/trunk/http-core/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/http-core/pom.xml?rev=387491&r1=387490&r2=387491&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/http-core/pom.xml (original)
+++ jakarta/httpcomponents/trunk/http-core/pom.xml Tue Mar 21 03:08:35 2006
@@ -1,41 +1,41 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- 
-/*
- * Copyright 2001-2004 The Apache Software Foundation.
- * 
- * Licensed 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.
- */
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+ * Copyright 2001-2004 The Apache Software Foundation.
+ * 
+ * Licensed 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.
+ */
  -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.jakarta.httpcomponents</groupId>
     <artifactId>httpcomponents</artifactId>
     <version>4.0-SNAPSHOT</version>
-  </parent>
-  <groupId>org.apache.jakarta.httpcomponents</groupId>
-  <artifactId>http-core</artifactId>
-  <packaging>jar</packaging>
-  <version>4.0-SNAPSHOT</version>
-  <name>HttpCore</name>
-  <url>http://jakarta.apache.org/httpcomponents/http-core/</url>
-  <description>Core components to build HTTP enabled services</description>
-  <inceptionYear>2005</inceptionYear>
-
-  <organization>
-    <name>Apache Software Foundation</name>
-    <url>http://www.apache.org/</url>
+  </parent>
+  <groupId>org.apache.jakarta.httpcomponents</groupId>
+  <artifactId>http-core</artifactId>
+  <packaging>jar</packaging>
+  <version>4.0-SNAPSHOT</version>
+  <name>HttpCore</name>
+  <url>http://jakarta.apache.org/httpcomponents/http-core/</url>
+  <description>Core components to build HTTP enabled services</description>
+  <inceptionYear>2005</inceptionYear>
+
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
   </organization>
 
   <issueManagement>
@@ -48,23 +48,23 @@
     <developerConnection>scm:svn:http://svn.apache.org/repos/asf/jakarta/httpcomponents/trunk/${pom.artifactId}</developerConnection>
     <url>http://svn.apache.org/repos/asf/jakarta/httpcomponents/trunk/${pom.artifactId}</url>
   </scm>
-
-  <licenses>
-    <license>
-      <name>Apache License</name>
-      <url>LICENSE.txt</url>
-      <distribution>repo</distribution>
-    </license>
+
+  <licenses>
+    <license>
+      <name>Apache License</name>
+      <url>LICENSE.txt</url>
+      <distribution>repo</distribution>
+    </license>
   </licenses>
 
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
 
   <distributionManagement>
     <site>
@@ -73,12 +73,17 @@
     </site>
   </distributionManagement>
 
-  <build>
-    <sourceDirectory>src/java</sourceDirectory>
-    <testSourceDirectory>src/test</testSourceDirectory>
-    <testResources>
-      <includes>**/TestAll.java</includes>
-    </testResources>
+  <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>
@@ -134,4 +139,4 @@
     <maven.compile.target>1.3</maven.compile.target>
   </properties> 
 
-</project>
+</project>