Class PackagingProfileActivator
java.lang.Object
org.apache.maven.model.profile.activation.PackagingProfileActivator
- All Implemented Interfaces:
ProfileActivator
@Named("packaging")
@Singleton
@Deprecated(since="4.0.0")
public class PackagingProfileActivator
extends Object
implements ProfileActivator
Deprecated.
Determines profile activation based on the project's packaging.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
isActive
(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Deprecated.Determines whether the specified profile is active in the given activator context.boolean
presentInConfig
(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Deprecated.Determines whether specified activation method is present in configuration or not.
-
Constructor Details
-
PackagingProfileActivator
public PackagingProfileActivator()Deprecated.
-
-
Method Details
-
isActive
public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Deprecated.Description copied from interface:ProfileActivator
Determines whether the specified profile is active in the given activator context.- Specified by:
isActive
in interfaceProfileActivator
- Parameters:
profile
- The profile whose activation status should be determined, must not benull
.context
- The environmental context used to determine the activation status of the profile, must not benull
.problems
- The container used to collect problems (e.g. bad syntax) that were encountered, must not benull
.- Returns:
true
if the profile is active,false
otherwise.
-
presentInConfig
public boolean presentInConfig(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Deprecated.Description copied from interface:ProfileActivator
Determines whether specified activation method is present in configuration or not. It should help to have AND between activation conditions Need for solving https://issues.apache.org/jira/browse/MNG-4565- Specified by:
presentInConfig
in interfaceProfileActivator
- Parameters:
profile
- The profile whose activation status should be determined, must not benull
.context
- The environmental context used to determine the activation status of the profile, must not benull
.problems
- The container used to collect problems (e.g. bad syntax) that were encountered, must not benull
.- Returns:
true
if the profile is active,false
otherwise.
-
ModelBuilder
instead