Re: change default compileSourceRoots

2006-10-04 Thread Shane Isbell
A third option is to inject MavenProject in you pom and then use methods: MavenProject.getBuild().set[get]SourceDirectory("") and MavenProject.getBuild().set[get]TestSourceDirectory(""); Shane On 10/4/06, Philippe Faes <[EMAIL PROTECTED]> wrote: On Wed, 2006-10-04 at 09:54 +0200, Kenney Weste

Re: change default compileSourceRoots

2006-10-04 Thread Philippe Faes
On Wed, 2006-10-04 at 09:54 +0200, Kenney Westerhof wrote: > Hmm, I don't think so - even the native-maven-plugin that can compile C/C++ > etc. > requires new sourceroots. > > Two options: > > 1) Just let your VHDL compiler compile stuff from src/(main|test)/vhdl > by default, and let users over

Re: change default compileSourceRoots

2006-10-04 Thread Kenney Westerhof
Philippe Faes wrote: Dear all, I'm working on a Maven plug-in that compiles VHDL code.My plug-in would introduce a new packaging (say "hdl"). I would like to use the maven compileSourceRoots and testCompileSourceRoots, but their default values should be changed to "src/main/vhdl" and "src/test

change default compileSourceRoots

2006-10-04 Thread Philippe Faes
Dear all, I'm working on a Maven plug-in that compiles VHDL code.My plug-in would introduce a new packaging (say "hdl"). I would like to use the maven compileSourceRoots and testCompileSourceRoots, but their default values should be changed to "src/main/vhdl" and "src/test/vhdl". I know this is