You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by ak...@apache.org on 2008/06/06 06:55:18 UTC

svn commit: r663821 - in /mina/asyncweb: branches/1.0/client/ branches/1.0/client/src/test/catalina/conf/ branches/1.0/client/src/test/catalina/webapps/auth_basic/WEB-INF/ branches/1.0/client/src/test/catalina/webapps/auth_digest/WEB-INF/ trunk/client/...

Author: akarasulu
Date: Thu Jun  5 21:55:18 2008
New Revision: 663821

URL: http://svn.apache.org/viewvc?rev=663821&view=rev
Log:
dos2unix trunk/common/pom.xml and set svn:eol-style to native on xml files

Modified:
    mina/asyncweb/branches/1.0/client/pom.xml   (props changed)
    mina/asyncweb/branches/1.0/client/src/test/catalina/conf/web.xml   (props changed)
    mina/asyncweb/branches/1.0/client/src/test/catalina/webapps/auth_basic/WEB-INF/web.xml   (props changed)
    mina/asyncweb/branches/1.0/client/src/test/catalina/webapps/auth_digest/WEB-INF/web.xml   (props changed)
    mina/asyncweb/trunk/client/pom.xml   (contents, props changed)
    mina/asyncweb/trunk/client/src/test/catalina/conf/web.xml   (props changed)
    mina/asyncweb/trunk/common/pom.xml   (contents, props changed)
    mina/asyncweb/trunk/common/src/test/catalina/conf/web.xml   (props changed)
    mina/asyncweb/trunk/examples/addServiceDefinition.xml   (props changed)
    mina/asyncweb/trunk/fileservice/pom.xml   (props changed)

Propchange: mina/asyncweb/branches/1.0/client/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: mina/asyncweb/branches/1.0/client/src/test/catalina/conf/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: mina/asyncweb/branches/1.0/client/src/test/catalina/webapps/auth_basic/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: mina/asyncweb/branches/1.0/client/src/test/catalina/webapps/auth_digest/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: mina/asyncweb/trunk/client/pom.xml
URL: http://svn.apache.org/viewvc/mina/asyncweb/trunk/client/pom.xml?rev=663821&r1=663820&r2=663821&view=diff
==============================================================================
--- mina/asyncweb/trunk/client/pom.xml (original)
+++ mina/asyncweb/trunk/client/pom.xml Thu Jun  5 21:55:18 2008
@@ -1,114 +1,114 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-        Licensed to the Apache Software Foundation (ASF) under one
-        or more contributor license agreements.  See the NOTICE file
-        distributed with this work for additional information
-        regarding copyright ownership.  The ASF licenses this file
-        to you 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">
-  <parent>
-    <artifactId>asyncweb-parent</artifactId>
-    <groupId>org.apache.asyncweb</groupId>
-    <version>0.9.0-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>asyncweb-client</artifactId>
-  <name>Apache Asyncweb Client</name>
-  <packaging>bundle</packaging>  
-
-  <properties>
-    <exportedPackage>${groupId}.client</exportedPackage>
-  </properties>
-
-  <dependencies>
-    <dependency>
-      <groupId>${groupId}</groupId>
-      <artifactId>asyncweb-common</artifactId>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.mina</groupId>
-      <artifactId>mina-core</artifactId>
-    </dependency>
-
-    <dependency>
-      <groupId>commons-codec</groupId>
-      <artifactId>commons-codec</artifactId>
-    </dependency>
-
-    <!-- ======================= -->
-    <!-- TEST Scope Dependencies -->
-    <!-- ======================= -->
-
-    <dependency>
-      <groupId>org.apache.tomcat</groupId>
-      <artifactId>catalina</artifactId>
-      <version>6.0.13</version>
-      <scope>test</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.tomcat</groupId>
-      <artifactId>coyote</artifactId>
-      <version>6.0.13</version>
-      <scope>test</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.tomcat</groupId>
-      <artifactId>servlet-api</artifactId>
-      <version>6.0.13</version>
-      <scope>test</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.tomcat.extras</groupId>
-      <artifactId>juli-adapters</artifactId>
-      <version>6.0.13</version>
-      <scope>test</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.tomcat</groupId>
-      <artifactId>jasper</artifactId>
-      <version>6.0.13</version>
-      <scope>test</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.tomcat</groupId>
-      <artifactId>jasper-jdt</artifactId>
-      <version>6.0.13</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <forkMode>pertest</forkMode>
-          <excludes>
-            <exclude>**/ProxyTest.java</exclude>
-          </excludes>
-
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-</project>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+        Licensed to the Apache Software Foundation (ASF) under one
+        or more contributor license agreements.  See the NOTICE file
+        distributed with this work for additional information
+        regarding copyright ownership.  The ASF licenses this file
+        to you 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">
+  <parent>
+    <artifactId>asyncweb-parent</artifactId>
+    <groupId>org.apache.asyncweb</groupId>
+    <version>0.9.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>asyncweb-client</artifactId>
+  <name>Apache Asyncweb Client</name>
+  <packaging>bundle</packaging>  
+
+  <properties>
+    <exportedPackage>${groupId}.client</exportedPackage>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>${groupId}</groupId>
+      <artifactId>asyncweb-common</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.mina</groupId>
+      <artifactId>mina-core</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+
+    <!-- ======================= -->
+    <!-- TEST Scope Dependencies -->
+    <!-- ======================= -->
+
+    <dependency>
+      <groupId>org.apache.tomcat</groupId>
+      <artifactId>catalina</artifactId>
+      <version>6.0.13</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.tomcat</groupId>
+      <artifactId>coyote</artifactId>
+      <version>6.0.13</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.tomcat</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>6.0.13</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.tomcat.extras</groupId>
+      <artifactId>juli-adapters</artifactId>
+      <version>6.0.13</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.tomcat</groupId>
+      <artifactId>jasper</artifactId>
+      <version>6.0.13</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.tomcat</groupId>
+      <artifactId>jasper-jdt</artifactId>
+      <version>6.0.13</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <forkMode>pertest</forkMode>
+          <excludes>
+            <exclude>**/ProxyTest.java</exclude>
+          </excludes>
+
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: mina/asyncweb/trunk/client/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: mina/asyncweb/trunk/client/src/test/catalina/conf/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: mina/asyncweb/trunk/common/pom.xml
URL: http://svn.apache.org/viewvc/mina/asyncweb/trunk/common/pom.xml?rev=663821&r1=663820&r2=663821&view=diff
==============================================================================
--- mina/asyncweb/trunk/common/pom.xml (original)
+++ mina/asyncweb/trunk/common/pom.xml Thu Jun  5 21:55:18 2008
@@ -1,48 +1,48 @@
-<?xml version="1.0"?>
-<!--
-        Licensed to the Apache Software Foundation (ASF) under one
-        or more contributor license agreements.  See the NOTICE file
-        distributed with this work for additional information
-        regarding copyright ownership.  The ASF licenses this file
-        to you 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>
-  <parent>
-    <artifactId>asyncweb-parent</artifactId>
-    <groupId>org.apache.asyncweb</groupId>
-    <version>0.9.0-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>asyncweb-common</artifactId>
+<?xml version="1.0"?>
+<!--
+        Licensed to the Apache Software Foundation (ASF) under one
+        or more contributor license agreements.  See the NOTICE file
+        distributed with this work for additional information
+        regarding copyright ownership.  The ASF licenses this file
+        to you 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>
+  <parent>
+    <artifactId>asyncweb-parent</artifactId>
+    <groupId>org.apache.asyncweb</groupId>
+    <version>0.9.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>asyncweb-common</artifactId>
   <packaging>bundle</packaging>
-  <name>Apache Asyncweb Common</name>
-
-
-  <properties>
-    <exportedPackage>${groupId}.common</exportedPackage>
-  </properties>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.mina</groupId>
-      <artifactId>mina-core</artifactId>
-    </dependency>
-
-    <dependency>
-      <groupId>commons-codec</groupId>
-      <artifactId>commons-codec</artifactId>
-    </dependency>
+  <name>Apache Asyncweb Common</name>
+
+
+  <properties>
+    <exportedPackage>${groupId}.common</exportedPackage>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.mina</groupId>
+      <artifactId>mina-core</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
 
     <dependency>
       <groupId>org.apache.tomcat</groupId>
@@ -85,5 +85,5 @@
       <version>6.0.13</version>
       <scope>test</scope>
     </dependency>
-  </dependencies>
-</project>
+  </dependencies>
+</project>

Propchange: mina/asyncweb/trunk/common/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: mina/asyncweb/trunk/common/src/test/catalina/conf/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: mina/asyncweb/trunk/examples/addServiceDefinition.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: mina/asyncweb/trunk/fileservice/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native