当前位置: 首页>>代码示例>>Java>>正文


Java ProfileActivationContext类代码示例

本文整理汇总了Java中org.apache.maven.model.profile.ProfileActivationContext的典型用法代码示例。如果您正苦于以下问题:Java ProfileActivationContext类的具体用法?Java ProfileActivationContext怎么用?Java ProfileActivationContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ProfileActivationContext类属于org.apache.maven.model.profile包,在下文中一共展示了ProfileActivationContext类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isActive

import org.apache.maven.model.profile.ProfileActivationContext; //导入依赖的package包/类
public boolean isActive( Profile profile, ProfileActivationContext context, ModelProblemCollector problems )
{
    Activation activation = profile.getActivation();

    if ( activation == null )
    {
        return false;
    }

    String jdk = activation.getJdk();

    if ( jdk == null )
    {
        return false;
    }

    String version = context.getSystemProperties().get( "java.version" );

    if ( version == null || version.length() <= 0 )
    {
        problems.add( new ModelProblemCollectorRequest( Severity.ERROR, Version.BASE )
                .setMessage( "Failed to determine Java version for profile " + profile.getId() )
                .setLocation(activation.getLocation( "jdk" ) ) );
        return false;
    }

    if ( jdk.startsWith( "!" ) )
    {
        return !version.startsWith( jdk.substring( 1 ) );
    }
    else if ( isRange( jdk ) )
    {
        return isInRange( version, getRange( jdk ) );
    }
    else
    {
        return version.startsWith( jdk );
    }
}
 
开发者ID:gems-uff,项目名称:oceano,代码行数:40,代码来源:JdkVersionProfileActivator.java

示例2: isActive

import org.apache.maven.model.profile.ProfileActivationContext; //导入依赖的package包/类
public boolean isActive( Profile profile, ProfileActivationContext context, ModelProblemCollector problems )
{
    Activation activation = profile.getActivation();

    if ( activation == null )
    {
        return false;
    }

    ActivationOS os = activation.getOs();

    if ( os == null )
    {
        return false;
    }

    boolean active = ensureAtLeastOneNonNull( os );

    if ( active && os.getFamily() != null )
    {
        active = determineFamilyMatch( os.getFamily() );
    }
    if ( active && os.getName() != null )
    {
        active = determineNameMatch( os.getName() );
    }
    if ( active && os.getArch() != null )
    {
        active = determineArchMatch( os.getArch() );
    }
    if ( active && os.getVersion() != null )
    {
        active = determineVersionMatch( os.getVersion() );
    }

    return active;
}
 
开发者ID:gems-uff,项目名称:oceano,代码行数:38,代码来源:OperatingSystemProfileActivator.java

示例3: assertActivation

import org.apache.maven.model.profile.ProfileActivationContext; //导入依赖的package包/类
protected void assertActivation( boolean active, Profile profile, ProfileActivationContext context )
{
    SimpleProblemCollector problems = new SimpleProblemCollector();

    assertEquals( active, activator.isActive( profile, context, problems ) );

    assertEquals( problems.getErrors().toString(), 0, problems.getErrors().size() );
    assertEquals( problems.getWarnings().toString(), 0, problems.getWarnings().size() );
}
 
开发者ID:gems-uff,项目名称:oceano,代码行数:10,代码来源:AbstractProfileActivatorTest.java

示例4: newContext

import org.apache.maven.model.profile.ProfileActivationContext; //导入依赖的package包/类
protected ProfileActivationContext newContext( final Properties userProperties, final Properties systemProperties )
{
    DefaultProfileActivationContext context = new DefaultProfileActivationContext();
    return context.setUserProperties( userProperties ).setSystemProperties( systemProperties );
}
 
开发者ID:gems-uff,项目名称:oceano,代码行数:6,代码来源:AbstractProfileActivatorTest.java

示例5: isActive

import org.apache.maven.model.profile.ProfileActivationContext; //导入依赖的package包/类
/**
 * Determines whether the specified profile is active in the given activator context.
 * 
 * @param profile The profile whose activation status should be determined, must not be {@code null}.
 * @param context The environmental context used to determine the activation status of the profile, must not be
 *            {@code null}.
 * @param problems The container used to collect problems (e.g. bad syntax) that were encountered, must not be
 *            {@code null}.
 * @return {@code true} if the profile is active, {@code false} otherwise.
 */
boolean isActive( Profile profile, ProfileActivationContext context, ModelProblemCollector problems );
 
开发者ID:gems-uff,项目名称:oceano,代码行数:12,代码来源:ProfileActivator.java


注:本文中的org.apache.maven.model.profile.ProfileActivationContext类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。