You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by Alex Blewitt <Al...@ioshq.com> on 2003/08/16 13:04:32 UTC

[PATCH] Added 'resources' directory to etc/project.xml file

I've modified the default project.xml file to have an additional 
include. Now, modules can have src/resources as well as the src/java 
and all contents of the 'resources' are put into the JAR as well.

We can use this resources directory to store i18n files (amongst 
others).

I've also modified my e-mail address to use my work-related one rather 
than my home one -- I'd rather not have the latter published on the 
site.

Alex.

Index: project.xml
===================================================================
RCS file: /home/cvspublic/incubator-geronimo/etc/project.xml,v
retrieving revision 1.7
diff -u -r1.7 project.xml
--- project.xml	16 Aug 2003 02:35:15 -0000	1.7
+++ project.xml	16 Aug 2003 11:00:45 -0000
@@ -206,7 +206,8 @@
      </contributor>
      <contributor>
        <name>Alex Blewitt</name>
-      <email>Alex.Blewitt@bandlem.com</email>
+      <email>Alex.Blewitt@ioshq.com</email>
+      <organization>International Object Solutions 
Limited</organization>
      </contributor>
      <contributor>
        <name>Brent Worden</name>
@@ -240,6 +241,15 @@
          <exclude>**/Abstract*.java</exclude>
        </excludes>
      </unitTest>
+    <resources>
+      <resource>
+        <directory>${basedir}/src/resources</directory>
+        <includes>
+          <include>**/*</include>
+         </includes>
+      </resource>
+    </resources>
+
    </build>