Adding the missing project.properties to addressing modules
deleting un-necessary readme.txt files

diff --git a/etc/project.xml b/etc/project.xml
index 1dd2ac7..3c0f37e 100644
--- a/etc/project.xml
+++ b/etc/project.xml
@@ -1,5 +1,23 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
-<!-- edited with XMLSpy v2005 rel. 3 U (http://www.altova.com) by Eran Chinthaka (W3C) -->
+
+<!--
+/*
+ * 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>
 	<name>Axis2.0</name>
 	<pomVersion>3</pomVersion>
diff --git a/maven.xml b/maven.xml
index b9ff2d9..8fe3fdf 100644
--- a/maven.xml
+++ b/maven.xml
@@ -402,6 +402,7 @@
                 <ant:exclude name="project.xml"/>
                 <ant:exclude name="**/*.iml"/>
                 <ant:exclude name="**/.*"/>
+                <ant:exclude name="**/conf/**"/>
             </ant:fileset>
             <ant:lib dir="target/temp/war/lib">
                 <ant:include name="**"/>
diff --git a/modules/addressing/project.properties b/modules/addressing/project.properties
new file mode 100644
index 0000000..56a6117
--- /dev/null
+++ b/modules/addressing/project.properties
@@ -0,0 +1,17 @@
+# -------------------------------------------------------------------

+# 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.

+# -------------------------------------------------------------------

+

+maven.multiproject.type=jar

diff --git a/modules/codegen/readme.txt b/modules/codegen/readme.txt
deleted file mode 100644
index abea19f..0000000
--- a/modules/codegen/readme.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-This module is the runtime portion of a basic XML<->Java databinding system

-for Axis2.  Its features include:

-

-* Metadata-based serialization and deserialization

-* Automatic multi-ref handling for SOAP encoding (SOAP 1.1 / 1.2)

-* RPC style message receiver

-

-SERIALIZING

-

-The SerializationContext (org.apache.axis2.databinding.SerializationContext) is

-the main entry point class for serializing Java to XML.  A SerializationContext

-is associated with a StAX XMLStreamWriter at construction time:

-

-  SerializationContext sc = new SerializationContext(writer);

-

-The most important externally-accessible method is "serializeElement(qname,

-value, serializer)".  This method will use the passed Serializer to write

-the passed value to the XML writer, using the passed QName as the element name.

-A Serializer is a class implementing org.apache.axis2.databinding.Serializer,

-whose responsibility is to write well-known kinds of data to a

-SerializationContext/XMLStreamWriter.

-

-In Axis 1.X, the SerializationContext would choose the Serializer to use

-itself based on an active set of type mappings.  This worked great for many

-cases, but as it turns out there are also context-dependent situations where

-the type mapping isn't good enough - this is particularly common with certain

-kinds of array/collection processing.  In Axis 2, therefore, each serialization

-call allows a reference to the Serializer.

-

-DESERIALIZATION:

-

-As the SerializationContext is the main focus for serializing Java to XML, the

-DeserializationContext is the focus for deserializing XML to Java.

-

-  context.deserialize(xmlStreamReader, deserializer)

-

-The first thing to note is that this method has no return value - so where

-does the deserialized data go?  The deserialization system is based on the

-idea of "targets" - these are "push based" objects whose job in life it is

-to recieve deserialized values from Deserializers.  So once you set up the

-appropriate target in a Deserializer, all you need to do is hand it to the

-DeserializationContext.deserialize() method and your value will be put in

-the appropriate place.

-

-Still TODO:

-

-* Nested collections/arrays

-* SOAP arrayType processing

-* Produce/handle xsi:types

-* Holder implementation for inouts

-* Associate TypeDesc with Java classes via static data

-* The WSDL / Schema portion (translate schemas into generated classes

-   with TypeDescs, and vice versa.  Also handle RPC style stubs/skels.)

-* Tests!

-* Finish this file :) (move a bunch of it to real documentation)

-

diff --git a/modules/samples/xdocs/readme.txt b/modules/samples/xdocs/readme.txt
deleted file mode 100644
index ccb3ef3..0000000
--- a/modules/samples/xdocs/readme.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-----------------------------------------------------------------

-		Readme file for the sample

-----------------------------------------------------------------

-Further information about this sample is included in the docs folder

-Executing the batch file or the shell script will bringup the GUI

-Selecting the help menu from the GUI will also bring up the help

-