當前位置: 首頁>>代碼示例>>Java>>正文


Java PluginDescriptor.setGroupId方法代碼示例

本文整理匯總了Java中org.apache.maven.plugin.descriptor.PluginDescriptor.setGroupId方法的典型用法代碼示例。如果您正苦於以下問題:Java PluginDescriptor.setGroupId方法的具體用法?Java PluginDescriptor.setGroupId怎麽用?Java PluginDescriptor.setGroupId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.maven.plugin.descriptor.PluginDescriptor的用法示例。


在下文中一共展示了PluginDescriptor.setGroupId方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: retrieveContext

import org.apache.maven.plugin.descriptor.PluginDescriptor; //導入方法依賴的package包/類
Map<String, Object> retrieveContext( MavenSession session )
{
    Map<String, Object> context = null;

    if ( session != null )
    {
        PluginDescriptor desc = new PluginDescriptor();
        desc.setGroupId( PluginDescriptor.getDefaultPluginGroupId() );
        desc.setArtifactId( PluginDescriptor.getDefaultPluginArtifactId( "toolchains" ) );

        MavenProject current = session.getCurrentProject();
        
        if ( current != null )
        {
            //TODO: why is this using the context
            context = session.getPluginContext( desc, current );
        }
    }

    return ( context != null ) ? context : new HashMap<String, Object>();
}
 
開發者ID:gems-uff,項目名稱:oceano,代碼行數:22,代碼來源:DefaultToolchainManager.java

示例2: newMojoExecution

import org.apache.maven.plugin.descriptor.PluginDescriptor; //導入方法依賴的package包/類
private MojoExecution newMojoExecution()
{
    PluginDescriptor pd = new PluginDescriptor();
    pd.setArtifactId( "my-plugin" );
    pd.setGroupId( "org.myco.plugins" );
    pd.setVersion( "1" );

    MojoDescriptor md = new MojoDescriptor();
    md.setPluginDescriptor( pd );

    pd.addComponentDescriptor( md );

    return new MojoExecution( md );
}
 
開發者ID:gems-uff,項目名稱:oceano,代碼行數:15,代碼來源:PluginParameterExpressionEvaluatorTest.java


注:本文中的org.apache.maven.plugin.descriptor.PluginDescriptor.setGroupId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。