I use Eclipse + Maven and - for unit testing purposes - the web framework I am working with (Tapestry 5) requires that view elements (*.tml) that are in src/main/resources also be present in src/test/resources.

I am not sure how to make sure they are present simultaneously in both folders.

Can anyone please help?

link|improve this question

80% accept rate
I am not familiar with Tapestry. Guessing from the location, I assume these are resources (as opposed to source files). Shouldn't the test version of your resources be different from the production version? I recognize that there could be overlap in some resources. I think in that cases repeating the same resource (or resource file) for test purposes is preferable to coming up with a clever hack. – Sri Sankaran Feb 15 at 12:03
@SriSankaran. Thanks. Both versions have to be strictly identical. My only problem is that the resources have to be in sync and I am not sure how to achieve this... – balteo Feb 15 at 12:37
I concur with Sri Sankaran, but the crappy solution in a unix/linux environment would be to use symlinks. Of course that rules out Windows without cygwin. – Antionio Feb 15 at 14:49
@Antionio Actually, symlinks do exist in Windows. I think they were introduced with Windows 2000. – Henning Feb 16 at 7:40
Really? Always learning something new. – Antionio Feb 16 at 17:56
feedback

1 Answer

up vote 2 down vote accepted

Your resource files don't have to be in both locations just so that Maven can find them. Instead, you can just tell Maven that you've also put some in the src/main/java folder. Put this snippet into the build section of your POM:

<resources>
    <resource>
        <directory>src/main/resources</directory>
    </resource>
    <resource>
        <directory>src/main/java</directory>
        <includes>
            <include>**/*</include>
        </includes>
        <excludes>
            <exclude>**/*.java</exclude>
        </excludes>
    </resource>
</resources>

For more information, take a look at the relevant sections in the Maven Resources plugin documentation.

link|improve this answer
Thanks Henning. It works! – balteo Feb 16 at 9:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.