1 package org.apache.maven.profiles.activation; 2 3 18 19 import org.apache.maven.model.Profile; 20 import org.apache.maven.profiles.AlwaysOnActivation; 21 22 public class AlwaysOnProfileActivator 23 implements ProfileActivator 24 { 25 public boolean canDetermineActivation( Profile profile ) 26 { 27 return profile.getActivation() != null && profile.getActivation() instanceof AlwaysOnActivation; 28 } 29 30 public boolean isActive( Profile profile ) 31 { 32 return true; 33 } 34 } 35 | Popular Tags |