WTP servers are supposed to deploy the contents of both
src\main\application AND \target\m2e-wtp\ear-resources\
The latter is supposed to contain generated resources only, keeping your
sources clean in the former.

IIRC, there's was bug in RAD that prevented it to deploy both folders, but
I thought that was fixed already (if Chuck Bridgham is around, he might
know better).

You have 2 solutions :
- either tell m2e-wtp to not use target\m2e-wtp\ear-resources and generate
stuff direcly in src\main\application (Workspace preferences or Project
properties > Maven > WTP Integration > uncheck "Generate application.xml
under the build directory"). That feature was specifically requested by RAD
users, to handle that very case. Anyway, if you do this, you'll have to
make sure the generated files are excluded from your SCM.

- Activate resource filtering on the maven-ear-plugin, that will force
resources in src\main\application to be copied
under \target\m2e-wtp\ear-resources\


      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-ear-plugin</artifactId>
        <version>2.6</version>
        <configuration>
           <filtering>true</filtering>
           [...]
        </configuration>
      </plugin>


HIH

Fred Bricon


2011/12/1 Bjørn Willy Arntzen <[email protected]>

>  I’m deploying Web Apps in RAD 8.0.3 Test Environment with m2e and
> m2e-wtp.  Still a lot of issues, but some tings are actually working  ( ….)
> ****
>
> ** **
>
> One of my missing pieces is that I have a file ibm-application-bnd.xmi in
> my META-INF source directory, but this file is not copied into the
> \target\m2e-wtp\ear-resources\META-INF\ directory. This leads to a
> incomplete deploy. If I copy this manually and the deploy it into the Test
> Environment, everything’s working fine.****
>
> ** **
>
> Is it possible to configure m2e(or m2e-wtp) to copy certain (or all) files
> from \src\main\application\META-INF\ to the
> \target\m2e-wtp\ear-resources\META-INF\ ?****
>
> Med vennlig hilsen
>
> *Bjørn Willy Arntzen**
>
> *****
>
> _______________________________________________
> m2e-users mailing list
> [email protected]
> https://dev.eclipse.org/mailman/listinfo/m2e-users
>
>


-- 
"Have you tried turning it off and on again" - The IT Crowd
_______________________________________________
m2e-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/m2e-users

Reply via email to