Asmann,
I will explain everything
We have a pom.xml for constructing all the developer environment separate
from the pom's projects. We have,
1. use scm to checkout all proyects and bootstrap it.
2. copy eclipse to developer machine.
3. copy app server to developer machine
4. run eclipse:eclipse and eclipse:configure-workspace to set up code style
and generate all eclipse proyects.
We have a pom.xml which does activities from 1 to 4 and pom.xml which are
part of the proyect.
Our project's structure is the following:
pom.xml (parent)
pom.xml (project A)
pom.xml (project B)
pom.xml (project C)
I am trying to run mvn eclipse:eclipse in parent pom.xml without any
success.
I am not sure if pom.xml for constructing developer environment run mvn
eclipse:eclipse in pom.xml parent or in itself. I am almost sure that is
doing it in parent pom.xml without any success.
thanks in advance
this is my pom.xml for constructing developer environment:
<profile>
<id>developer</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.1</version>
<configuration>
<username>...</username>
<password>...</password>
<checkoutDirectory>...</checkoutDirectory>
<scmVersion>...</scmVersion>
<wtpversion>2.0</wtpversion>
<scmVersionType>branch</scmVersionType>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>bootstrap</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>copio-eclipse</id>
<phase>verify</phase>
<configuration>
<executable>scp</executable>
<arguments>
<argument>...</argument>
<argument>/opt/apps/</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
<execution>
<id>descomprimo-eclipse</id>
<phase>verify</phase>
<configuration>
<executable>tar</executable>
<arguments>
<argument>zxvf</argument>
<argument>/opt/apps/helios_jree.tar.gz</argument>
<argument>-C</argument>
<argument>/opt/apps/</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
...
</executions>
</plugin>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>configure-workspace-eclipse</id>
<phase>verify</phase>
<configuration>
<workspace>...</workspace>
<workspaceCodeStylesURL>
file:///${user.home}/WorkingDirectory/${odea.cvs.branch}/env/config/IDEs/eclipse/formatting-rules.xml
</workspaceCodeStylesURL>
<wtpmanifest>true</wtpmanifest>
<wtpapplicationxml>true</wtpapplicationxml>
<wtpversion>2.0</wtpversion>
<manifest>${basedir}/src/main/resources/META-INF/MANIFEST.MF</manifest>
</configuration>
<goals>
<goal>configure-workspace</goal>
<goal>eclipse</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
2011/4/19 Asmann, Roland <[email protected]>
> Can you post your configuration (if any) and the command you issue to
> run Maven?
>
>
> On 19.04.2011 17:44, Fernando Wermus wrote:
> > What it does not create are the files for each eclipse project. Thus I
> > cannot make the import.
> >
> > 2011/4/19 Asmann, Roland <[email protected]>
> >
> > > Doesn't it create the files or are your projects not in Eclipse?
> > >
> > > You must import the projects yourself after the build, the plugin does
> > > *not* do this for you!
> > >
> > >
> > > On 19.04.2011 17:14, Fernando Wermus wrote:
> > > > Hi all,
> > > > I have a pom which is a multimodule proyect. I am using maven plugin
> > > > eclipse for generating all the eclipse's proyects. But for reason,
> it
> > > > doesn't create any.
> > > >
> > > > any help would be really appreciated
> > > >
> > >
> > > --
> > > Roland Asmann
> > > Senior Software Engineer
> > >
> > > adesso Austria GmbH
> > > Floridotower 26. Stock T +43 1 2198790-27
> > > Floridsdorfer Hauptstr. 1 F +43 1 2198790-927
> > > A-1210 Wien M +43 664 88657566
> > > E [email protected]
> > > W www.adesso.at
> > >
> > > -------------------------------------------------------------
> > > >>> business. people. technology. <<<
> > > -------------------------------------------------------------
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [email protected]
> > > For additional commands, e-mail: [email protected]
> > >
> > >
> >
>
> --
> Roland Asmann
> Senior Software Engineer
>
> adesso Austria GmbH
> Floridotower 26. Stock T +43 1 2198790-27
> Floridsdorfer Hauptstr. 1 F +43 1 2198790-927
> A-1210 Wien M +43 664 88657566
> E [email protected]
> W www.adesso.at
>
> -------------------------------------------------------------
> >>> business. people. technology. <<<
> -------------------------------------------------------------
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>