本文整理汇总了Java中org.apache.maven.lifecycle.mapping.LifecycleMapping类的典型用法代码示例。如果您正苦于以下问题:Java LifecycleMapping类的具体用法?Java LifecycleMapping怎么用?Java LifecycleMapping使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LifecycleMapping类属于org.apache.maven.lifecycle.mapping包,在下文中一共展示了LifecycleMapping类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getDefaultLifecycle
import org.apache.maven.lifecycle.mapping.LifecycleMapping; //导入依赖的package包/类
private Lifecycle getDefaultLifecycle( MavenProject project )
throws MojoExecutionException
{
ClassRealm projectRealm = project.getClassRealm();
if ( projectRealm == null )
projectRealm = container.getContainerRealm();
ClassRealm oldLookupRealm = container.setLookupRealm( projectRealm );
ClassLoader oldContextClassLoader = Thread.currentThread().getContextClassLoader();
Thread.currentThread().setContextClassLoader( projectRealm );
try
{
return container.lookup( LifecycleMapping.class, project.getPackaging() ).getLifecycles().get( "default" );
}
catch ( ComponentLookupException e )
{
throw new MojoExecutionException( "Unable to get lifecycle for project " + project.getId(), e );
}
finally
{
Thread.currentThread().setContextClassLoader( oldContextClassLoader );
container.setLookupRealm( oldLookupRealm );
}
}
开发者ID:fedora-java,项目名称:xmvn,代码行数:26,代码来源:BuilddepMojo.java
示例2: getLifecyclePhases
import org.apache.maven.lifecycle.mapping.LifecycleMapping; //导入依赖的package包/类
public List<String> getLifecyclePhases() {
LifecycleMapping lifecycleMapping = lookupComponent(LifecycleMapping.class);
if (lifecycleMapping != null) {
Set<String> phases = new TreeSet<String>();
Map<String, Lifecycle> lifecycles = lifecycleMapping.getLifecycles();
for (Lifecycle lifecycle : lifecycles.values()) {
phases.addAll(lifecycle.getPhases().keySet());
}
return new ArrayList<String>(phases);
}
return Collections.<String>emptyList();
}
开发者ID:apache,项目名称:incubator-netbeans,代码行数:15,代码来源:MavenEmbedder.java
示例3: getPluginsBoundByDefaultToAllLifecycles
import org.apache.maven.lifecycle.mapping.LifecycleMapping; //导入依赖的package包/类
public Set<Plugin> getPluginsBoundByDefaultToAllLifecycles( String packaging )
{
if ( logger.isDebugEnabled() )
{
logger.debug( "Looking up lifecyle mappings for packaging " + packaging + " from " +
Thread.currentThread().getContextClassLoader() );
}
LifecycleMapping lifecycleMappingForPackaging = lifecycleMappings.get( packaging );
if ( lifecycleMappingForPackaging == null )
{
return null;
}
Map<Plugin, Plugin> plugins = new LinkedHashMap<Plugin, Plugin>();
for ( Lifecycle lifecycle : getOrderedLifecycles() )
{
org.apache.maven.lifecycle.mapping.Lifecycle lifecycleConfiguration =
lifecycleMappingForPackaging.getLifecycles().get( lifecycle.getId() );
Map<String, String> phaseToGoalMapping = null;
if ( lifecycleConfiguration != null )
{
phaseToGoalMapping = lifecycleConfiguration.getPhases();
}
else if ( lifecycle.getDefaultPhases() != null )
{
phaseToGoalMapping = lifecycle.getDefaultPhases();
}
if ( phaseToGoalMapping != null )
{
// These are of the form:
//
// compile -> org.apache.maven.plugins:maven-compiler-plugin:compile[,gid:aid:goal,...]
//
for ( Map.Entry<String, String> goalsForLifecyclePhase : phaseToGoalMapping.entrySet() )
{
String phase = goalsForLifecyclePhase.getKey();
String goals = goalsForLifecyclePhase.getValue();
if ( goals != null )
{
parseLifecyclePhaseDefinitions( plugins, phase, goals );
}
}
}
}
return plugins.keySet();
}
开发者ID:gems-uff,项目名称:oceano,代码行数:54,代码来源:DefaultLifecyclePluginAnalyzer.java
注:本文中的org.apache.maven.lifecycle.mapping.LifecycleMapping类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论