mirror of https://github.com/apache/maven.git
improved javadoc: added link to model used
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1403794 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0cb1d89974
commit
970035aba4
|
@ -41,6 +41,7 @@ import org.codehaus.plexus.util.StringUtils;
|
|||
* Determines profile activation based on the existence/absence of some file.
|
||||
*
|
||||
* @author Benjamin Bentmann
|
||||
* @see ActivationFile
|
||||
*/
|
||||
@Component( role = ProfileActivator.class, hint = "file" )
|
||||
public class FileProfileActivator
|
||||
|
|
|
@ -36,6 +36,7 @@ import org.codehaus.plexus.component.annotations.Component;
|
|||
* Determines profile activation based on the version of the current Java runtime.
|
||||
*
|
||||
* @author Benjamin Bentmann
|
||||
* @see Activation#getJdk()
|
||||
*/
|
||||
@Component( role = ProfileActivator.class, hint = "jdk-version" )
|
||||
public class JdkVersionProfileActivator
|
||||
|
|
|
@ -31,6 +31,7 @@ import org.codehaus.plexus.util.Os;
|
|||
* Determines profile activation based on the operating system of the current runtime platform.
|
||||
*
|
||||
* @author Benjamin Bentmann
|
||||
* @see ActivationOS
|
||||
*/
|
||||
@Component( role = ProfileActivator.class, hint = "os" )
|
||||
public class OperatingSystemProfileActivator
|
||||
|
|
|
@ -34,6 +34,7 @@ import org.codehaus.plexus.util.StringUtils;
|
|||
* Determines profile activation based on the existence or value of some execution property.
|
||||
*
|
||||
* @author Benjamin Bentmann
|
||||
* @see ActivationProperty
|
||||
*/
|
||||
@Component( role = ProfileActivator.class, hint = "property" )
|
||||
public class PropertyProfileActivator
|
||||
|
|
Loading…
Reference in New Issue