You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by de...@apache.org on 2006/12/19 12:41:55 UTC

svn commit: r488641 - in /webservices/axis2/branches/java/1_1/modules/adb: maven.xml src/org/apache/axis2/databinding/i18n/resource.properties src/org/apache/axis2/databinding/types/package.html test-resources/xmls/array1.xml

Author: deepal
Date: Tue Dec 19 03:41:53 2006
New Revision: 488641

URL: http://svn.apache.org/viewvc?view=rev&rev=488641
Log:
fixing AXIS2-1875 for adb module 
 - I think it is easy for me to do this module by module rather that doing it for complete project 

- Dims pls revert if I have done anything wrong (I can create patch and send you , but it takes times :) )

Modified:
    webservices/axis2/branches/java/1_1/modules/adb/maven.xml
    webservices/axis2/branches/java/1_1/modules/adb/src/org/apache/axis2/databinding/i18n/resource.properties
    webservices/axis2/branches/java/1_1/modules/adb/src/org/apache/axis2/databinding/types/package.html
    webservices/axis2/branches/java/1_1/modules/adb/test-resources/xmls/array1.xml

Modified: webservices/axis2/branches/java/1_1/modules/adb/maven.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/adb/maven.xml?view=diff&rev=488641&r1=488640&r2=488641
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/adb/maven.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/adb/maven.xml Tue Dec 19 03:41:53 2006
@@ -1,17 +1,34 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<project default="jar"
-         xmlns:j="jelly:core"
-         xmlns:u="jelly:util"
-         xmlns:maven="jelly:maven"
-         xmlns:util="jelly:util"
-         xmlns:deploy="deploy"
-         xmlns:ant="jelly:ant">
-
-    <preGoal name="itest:compile">
-        <u:file var="file" name="${maven.itest.src}"/>
-        <j:if test="${!file.exists()}">
-            <j:expr value="${context.setVariable('maven.itest.skip', 'true')}"/>
-        </j:if>
-    </preGoal>
-</project>
+<?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 default="jar"
+         xmlns:j="jelly:core"
+         xmlns:u="jelly:util"
+         xmlns:maven="jelly:maven"
+         xmlns:util="jelly:util"
+         xmlns:deploy="deploy"
+         xmlns:ant="jelly:ant">
+
+    <preGoal name="itest:compile">
+        <u:file var="file" name="${maven.itest.src}"/>
+        <j:if test="${!file.exists()}">
+            <j:expr value="${context.setVariable('maven.itest.skip', 'true')}"/>
+        </j:if>
+    </preGoal>
+</project>

Modified: webservices/axis2/branches/java/1_1/modules/adb/src/org/apache/axis2/databinding/i18n/resource.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/adb/src/org/apache/axis2/databinding/i18n/resource.properties?view=diff&rev=488641&r1=488640&r2=488641
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/adb/src/org/apache/axis2/databinding/i18n/resource.properties (original)
+++ webservices/axis2/branches/java/1_1/modules/adb/src/org/apache/axis2/databinding/i18n/resource.properties Tue Dec 19 03:41:53 2006
@@ -1,3 +1,20 @@
+
+ #
+ # 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.
+ #
+
 # Translation instructions.
 # 1.  Each message line is of the form key=value.
 #     Translate the value, DO NOT translate the key.

Modified: webservices/axis2/branches/java/1_1/modules/adb/src/org/apache/axis2/databinding/types/package.html
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/adb/src/org/apache/axis2/databinding/types/package.html?view=diff&rev=488641&r1=488640&r2=488641
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/adb/src/org/apache/axis2/databinding/types/package.html (original)
+++ webservices/axis2/branches/java/1_1/modules/adb/src/org/apache/axis2/databinding/types/package.html Tue Dec 19 03:41:53 2006
@@ -1,3 +1,21 @@
+<!--
+/*
+ * 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.
+ */
+ -->
+
 <html>
 <body>
  These classes are directly salvaged from Axis 1 codebase. Original author comments have been preserved! 

Modified: webservices/axis2/branches/java/1_1/modules/adb/test-resources/xmls/array1.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/adb/test-resources/xmls/array1.xml?view=diff&rev=488641&r1=488640&r2=488641
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/adb/test-resources/xmls/array1.xml (original)
+++ webservices/axis2/branches/java/1_1/modules/adb/test-resources/xmls/array1.xml Tue Dec 19 03:41:53 2006
@@ -1,3 +1,21 @@
+<!--
+/*
+ * 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.
+ */
+ -->
+
 <wrapper>
     <item>one</item>
     <item>two</item>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org