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>[EMAIL PROTECTED]</email>
+ <email>[EMAIL PROTECTED]</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>





Reply via email to