Maven Developers List
> Subject: Re: Base Abstract Mojo
>
>
> Giuseppe Greco wrote:
>
>
> > * @parameter expression="${outputDirectory}"
> > default-value"${project.build.directory}"
>
> This misses the equal sign '=
Giuseppe Greco wrote:
* @parameter expression="${outputDirectory}"
default-value"${project.build.directory}"
This misses the equal sign '=' after "default-value". Is this a typo in
your source?
Benjamin
-
To unsubs
will never be injected.
-Stephen
On 17 June 2010 18:07, wrote:
> Dear all,
>
> I created a base abstract mojo like this:
>
> public abstract class MyAbstractMojo extends AbstractMojo {
>
>/**
> * @parameter expression="${outputDirectory}"
> de
Dear all,
I created a base abstract mojo like this:
public abstract class MyAbstractMojo extends AbstractMojo {
/**
* @parameter expression="${outputDirectory}"
default-value"${project.build.directory}"
*/
protected File outputDirectory;
/**