mirror of https://github.com/apache/maven.git
Adding documentation, to resolve MNG-1082.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@315045 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
241d8e9950
commit
9206f623e5
|
@ -40,6 +40,9 @@ public class EffectivePomPlugin
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* The projects in the current build. The effective-POM for
|
||||||
|
* each of these projects will written.
|
||||||
|
*
|
||||||
* @parameter expression="${reactorProjects}"
|
* @parameter expression="${reactorProjects}"
|
||||||
* @required
|
* @required
|
||||||
* @readonly
|
* @readonly
|
||||||
|
@ -47,6 +50,8 @@ public class EffectivePomPlugin
|
||||||
private List projects;
|
private List projects;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* If specified, write the output to this path.
|
||||||
|
*
|
||||||
* @parameter expression="${output}"
|
* @parameter expression="${output}"
|
||||||
*/
|
*/
|
||||||
private File output;
|
private File output;
|
||||||
|
|
|
@ -37,6 +37,9 @@ public class EffectiveSettingsMojo
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* The system settings for Maven. This is the instance resulting from
|
||||||
|
* merging global- and user-level settings files.
|
||||||
|
*
|
||||||
* @parameter expression="${settings}"
|
* @parameter expression="${settings}"
|
||||||
* @readonly
|
* @readonly
|
||||||
* @required
|
* @required
|
||||||
|
@ -44,7 +47,9 @@ public class EffectiveSettingsMojo
|
||||||
private Settings settings;
|
private Settings settings;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @parameter
|
* If specified write the effective settings file out to this path.
|
||||||
|
*
|
||||||
|
* @parameter expression="${output}"
|
||||||
*/
|
*/
|
||||||
private String output;
|
private String output;
|
||||||
|
|
||||||
|
@ -115,22 +120,12 @@ public class EffectiveSettingsMojo
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected final String getOutput()
|
public final void setOutput( String output )
|
||||||
{
|
|
||||||
return output;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected final void setOutput( String output )
|
|
||||||
{
|
{
|
||||||
this.output = output;
|
this.output = output;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected final Settings getSettings()
|
public final void setSettings( Settings settings )
|
||||||
{
|
|
||||||
return settings;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected final void setSettings( Settings settings )
|
|
||||||
{
|
{
|
||||||
this.settings = settings;
|
this.settings = settings;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue