- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for canDetectActivation (0.06 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/DetectedProfileActivator.java
@Deprecated public abstract class DetectedProfileActivator implements ProfileActivator { @Override public boolean canDetermineActivation(Profile profile) { return canDetectActivation(profile); } protected abstract boolean canDetectActivation(Profile profile);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/JdkPrefixProfileActivator.java
return jdk.replace("_", "-"); } protected String getJdkVersion() { return JDK_VERSION; } @Override protected boolean canDetectActivation(Profile profile) { return profile.getActivation() != null && profile.getActivation().getJdk() != null && !profile.getActivation().getJdk().isEmpty(); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/SystemPropertyProfileActivator.java
@Override public void contextualize(Context context) throws ContextException { properties = (Properties) context.get("SystemProperties"); } @Override protected boolean canDetectActivation(Profile profile) { return profile.getActivation() != null && profile.getActivation().getProperty() != null; } @Override public boolean isActive(Profile profile) throws ProfileActivationException {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/FileProfileActivator.java
/** * FileProfileActivator */ @Deprecated public class FileProfileActivator extends DetectedProfileActivator implements LogEnabled { private Logger logger; @Override protected boolean canDetectActivation(Profile profile) { return profile.getActivation() != null && profile.getActivation().getFile() != null; } @Override public boolean isActive(Profile profile) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.6K bytes - Viewed (0)