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


Java ArtifactFilterException.getMessage方法代码示例

本文整理汇总了Java中org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException.getMessage方法的典型用法代码示例。如果您正苦于以下问题:Java ArtifactFilterException.getMessage方法的具体用法?Java ArtifactFilterException.getMessage怎么用?Java ArtifactFilterException.getMessage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException的用法示例。


在下文中一共展示了ArtifactFilterException.getMessage方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: filterMarkedDependencies

import org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException; //导入方法依赖的package包/类
/**
 * Filter the marked dependencies
 * 
 * @param artifacts
 * @return
 * @throws MojoExecutionException
 */
protected DependencyStatusSets filterMarkedDependencies( Set artifacts )
    throws MojoExecutionException
{
    // remove files that have markers already
    FilterArtifacts filter = new FilterArtifacts();
    filter.clearFilters();
    filter.addFilter( getMarkedArtifactFilter() );

    Set unMarkedArtifacts;
    try
    {
        unMarkedArtifacts = filter.filter( artifacts );
    }
    catch ( ArtifactFilterException e )
    {
        throw new MojoExecutionException(e.getMessage(),e);
    }

    // calculate the skipped artifacts
    Set skippedArtifacts = new HashSet();
    skippedArtifacts.addAll( artifacts );
    skippedArtifacts.removeAll( unMarkedArtifacts );

    return new DependencyStatusSets( unMarkedArtifacts, null, skippedArtifacts );
}
 
开发者ID:kefik,项目名称:Pogamut3,代码行数:33,代码来源:AbstractDependencyFilterMojo.java

示例2: filterDependencies

import org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException; //导入方法依赖的package包/类
@Override
protected Set<Artifact> filterDependencies(Set<Artifact> dependencies,
                                           FilterArtifacts filters) throws MojoExecutionException {
    try {
        Set<Artifact> filtered = new LinkedHashSet<Artifact>(dependencies);

        @SuppressWarnings("unchecked")
        Collection<ArtifactsFilter> filtersToUse = filters.getFilters();
        filtersToUse.addAll(getAdditionalFilters());

        filtered.retainAll(filters.filter(dependencies));
        return filtered;
    }
    catch (ArtifactFilterException ex) {
        throw new MojoExecutionException(ex.getMessage(), ex);
    }
}
 
开发者ID:syndesisio,项目名称:syndesis,代码行数:18,代码来源:SupportMojo.java

示例3: filterMarkedDependencies

import org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException; //导入方法依赖的package包/类
protected DependencyStatusSets filterMarkedDependencies(Set artifacts) throws MojoExecutionException {
    // remove files that have markers already
    FilterArtifacts filter = new FilterArtifacts();
    filter.clearFilters();
    filter.addFilter(getMarkedArtifactFilter());

    Set unMarkedArtifacts;
    try {
        unMarkedArtifacts = filter.filter(artifacts);
    } catch (ArtifactFilterException e) {
        throw new MojoExecutionException(e.getMessage(), e);
    }

    // calculate the skipped artifacts
    Set skippedArtifacts = new HashSet();
    skippedArtifacts.addAll(artifacts);
    skippedArtifacts.removeAll(unMarkedArtifacts);

    return new DependencyStatusSets(unMarkedArtifacts, null, skippedArtifacts);
}
 
开发者ID:apache,项目名称:nifi-maven,代码行数:21,代码来源:NarMojo.java

示例4: getDependencySets

import org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException; //导入方法依赖的package包/类
/**
 * 
 * Method creates filters and filters the projects dependencies. This method
 * also transforms the dependencies if classifier is set. The dependencies
 * are filtered in least specific to most specific order
 * 
 * @param stopOnFailure
 * @return DependencyStatusSets - Bean of TreeSets that contains information
 *         on the projects dependencies
 * @throws MojoExecutionException 
 */
protected DependencyStatusSets getDependencySets( boolean stopOnFailure )
    throws MojoExecutionException
{
    // add filters in well known order, least specific to most specific
    FilterArtifacts filter = new FilterArtifacts();

    filter.addFilter( new TransitivityFilter( project.getDependencyArtifacts(), this.excludeTransitive ) );
    filter.addFilter( new ScopeFilter( this.includeScope, this.excludeScope ) );
    filter.addFilter( new TypeFilter( this.includeTypes, this.excludeTypes ) );
    filter.addFilter( new ClassifierFilter( this.includeClassifiers, this.excludeClassifiers ) );
    filter.addFilter( new GroupIdFilter( this.includeGroupIds, this.excludeGroupIds ) );
    filter.addFilter( new ArtifactIdFilter( this.includeArtifactIds, this.excludeArtifactIds ) );

    // start with all artifacts.
    Set artifacts = project.getArtifacts();

    // perform filtering
    try
    {
        artifacts = filter.filter( artifacts );
    }
    catch ( ArtifactFilterException e )
    {
        throw new MojoExecutionException(e.getMessage(),e);
    }

    // transform artifacts if classifier is set
    DependencyStatusSets status = null;
    if ( StringUtils.isNotEmpty( classifier ) )
    {
        status = getClassifierTranslatedDependencies( artifacts, stopOnFailure );
    }
    else
    {
        status = filterMarkedDependencies( artifacts );
    }

    return status;
}
 
开发者ID:kefik,项目名称:Pogamut3,代码行数:51,代码来源:AbstractDependencyFilterMojo.java

示例5: filterDependencies

import org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
protected Set<Artifact> filterDependencies(Set<Artifact> dependencies,
		FilterArtifacts filters) throws MojoExecutionException {
	try {
		return filters.filter(dependencies);
	}
	catch (ArtifactFilterException e) {
		throw new MojoExecutionException(e.getMessage(), e);
	}
}
 
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:11,代码来源:AbstractDependencyFilterMojo.java

示例6: filterDependencies

import org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException; //导入方法依赖的package包/类
@Override
protected Set<Artifact> filterDependencies(Set<Artifact> dependencies,
                                           FilterArtifacts filters) throws MojoExecutionException {
    try {
        Set<Artifact> filtered = new LinkedHashSet<Artifact>(dependencies);

        filters.getFilters().addAll(getAdditionalFilters());

        filtered.retainAll(filters.filter(dependencies));
        return filtered;
    }
    catch (ArtifactFilterException ex) {
        throw new MojoExecutionException(ex.getMessage(), ex);
    }
}
 
开发者ID:syndesisio,项目名称:syndesis-rest,代码行数:16,代码来源:SupportMojo.java

示例7: getDependencySets

import org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException; //导入方法依赖的package包/类
protected DependencyStatusSets getDependencySets(boolean stopOnFailure) throws MojoExecutionException {
    // add filters in well known order, least specific to most specific
    FilterArtifacts filter = new FilterArtifacts();

    filter.addFilter(new ProjectTransitivityFilter(project.getDependencyArtifacts(), false));
    filter.addFilter(new ScopeFilter(this.includeScope, this.excludeScope));
    filter.addFilter(new TypeFilter(this.includeTypes, this.excludeTypes));
    filter.addFilter(new ClassifierFilter(this.includeClassifiers, this.excludeClassifiers));
    filter.addFilter(new GroupIdFilter(this.includeGroupIds, this.excludeGroupIds));
    filter.addFilter(new ArtifactIdFilter(this.includeArtifactIds, this.excludeArtifactIds));

    // explicitly filter our nar dependencies
    filter.addFilter(new TypeFilter("", "nar"));

    // start with all artifacts.
    Set artifacts = project.getArtifacts();

    // perform filtering
    try {
        artifacts = filter.filter(artifacts);
    } catch (ArtifactFilterException e) {
        throw new MojoExecutionException(e.getMessage(), e);
    }

    // transform artifacts if classifier is set
    final DependencyStatusSets status;
    if (StringUtils.isNotEmpty(copyDepClassifier)) {
        status = getClassifierTranslatedDependencies(artifacts, stopOnFailure);
    } else {
        status = filterMarkedDependencies(artifacts);
    }

    return status;
}
 
开发者ID:apache,项目名称:nifi-maven,代码行数:35,代码来源:NarMojo.java

示例8: getNarDependency

import org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException; //导入方法依赖的package包/类
private NarDependency getNarDependency() throws MojoExecutionException {
    NarDependency narDependency = null;

    // get nar dependencies
    FilterArtifacts filter = new FilterArtifacts();
    filter.addFilter(new TypeFilter("nar", ""));

    // start with all artifacts.
    Set artifacts = project.getArtifacts();

    // perform filtering
    try {
        artifacts = filter.filter(artifacts);
    } catch (ArtifactFilterException e) {
        throw new MojoExecutionException(e.getMessage(), e);
    }

    // ensure there is a single nar dependency
    if (artifacts.size() > 1) {
        throw new MojoExecutionException("Each NAR represents a ClassLoader. A NAR dependency allows that NAR's ClassLoader to be "
                + "used as the parent of this NAR's ClassLoader. As a result, only a single NAR dependency is allowed.");
    } else if (artifacts.size() == 1) {
        final Artifact artifact = (Artifact) artifacts.iterator().next();

        narDependency = new NarDependency(artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion());
    }

    return narDependency;
}
 
开发者ID:apache,项目名称:nifi-maven,代码行数:30,代码来源:NarMojo.java

示例9: getProcessedArtifactItems

import org.apache.maven.shared.artifact.filter.collection.ArtifactFilterException; //导入方法依赖的package包/类
/**
 * Preprocesses the list of ArtifactItems. This method defaults the
 * outputDirectory if not set and creates the output Directory if it doesn't
 * exist.
 * 
 * @param removeVersion
 *            remove the version from the filename.
 * @return An ArrayList of preprocessed ArtifactItems
 * 
 * @throws MojoExecutionException
 *             with a message if an error occurs.
 * 
 * @see ArtifactItem
 */
protected ArrayList getProcessedArtifactItems( boolean removeVersion )
    throws MojoExecutionException
{
    if ( artifactItems == null || artifactItems.size() < 1 )
    {
        throw new MojoExecutionException( "There are no artifactItems configured." );
    }

    Iterator iter = artifactItems.iterator();
    while ( iter.hasNext() )
    {
        ArtifactItem artifactItem = (ArtifactItem) iter.next();
        this.getLog().info( "Configured Artifact: " + artifactItem.toString() );

        if ( artifactItem.getOutputDirectory() == null )
        {
            artifactItem.setOutputDirectory( this.outputDirectory );
        }
        artifactItem.getOutputDirectory().mkdirs();

        // make sure we have a version.
        if ( StringUtils.isEmpty( artifactItem.getVersion() ) )
        {
            fillMissingArtifactVersion( artifactItem );
        }

        artifactItem.setArtifact( this.getArtifact( artifactItem ) );

        if ( StringUtils.isEmpty( artifactItem.getDestFileName() ) )
        {
            artifactItem.setDestFileName( DependencyUtil.getFormattedFileName( artifactItem.getArtifact(),
                                                                               removeVersion ) );
        }

        try
        {
            artifactItem.setNeedsProcessing( checkIfProcessingNeeded( artifactItem ) );
        }
        catch ( ArtifactFilterException e )
        {
            throw new MojoExecutionException (e.getMessage(),e);
        }
    }
    return artifactItems;
}
 
开发者ID:kefik,项目名称:Pogamut3,代码行数:60,代码来源:AbstractFromConfigurationMojo.java


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