Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [m2e-users] How to specify goals and properties

pom-profile is likely the easiest way to configure m2e specific
properties and goal. Something like


    <profile>
      <id>m2e-workspace</id>
      <activation>
        <property>
          <name>m2e.version</name>
        </property>
      </activation>
      <properties>
        ...
      </properties>
      <build>
        <plugins>
          ...

    </profile>


--
Regards,
Igor

On 12-07-05 12:27 PM, l.penet@xxxxxxxx wrote:
Dear all,

sorry for this basic question, but I do not find answer in the
documentation.

One of my artefact is built calling maven like the following way :

mvn -Dtoto -Dtata resources:resources compile

With "old" maven integration plugin, I could specify those properties
and this additionnal goal.

How do I proceed with m2e ? Is it in lifecycleMappingData, in a way
similar to plugins ?

Thanks in advance,

Ludovic
|
| AVANT D'IMPRIMER, PENSEZ A L'ENVIRONNEMENT.
|

_______________________________________________
m2e-users mailing list
m2e-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/m2e-users



Back to the top