Kees de Kooter wrote:
Is it possible to control which output folders the eclipse plugin puts
into the .classpath file? I tried setting the outputDirectory property
in the plugin configuration but that did not have any effect.
I use this and it works:
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<outputDirectory>target-eclipse</outputDirectory>
</configuration>
</plugin>
</pluginManagement>
...
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]