Package org.apache.maven.repository.legacy.resolver.transform

Examples of org.apache.maven.repository.legacy.resolver.transform.ArtifactTransformationManager


    extends PlexusTestCase
{
    public void testTransformationManager()
        throws Exception
    {
        ArtifactTransformationManager tm = lookup( ArtifactTransformationManager.class );

        List tms = tm.getArtifactTransformations();

        assertEquals( 3, tms.size() );

        assertTrue( "We expected the release transformation and got " + tms.get(0), tms.get(0) instanceof ReleaseArtifactTransformation );
View Full Code Here


    extends PlexusTestCase
{
    public void testTransformationManager()
        throws Exception
    {
        ArtifactTransformationManager tm = (ArtifactTransformationManager) lookup( ArtifactTransformationManager.class );

        List tms = tm.getArtifactTransformations();

        assertEquals( 3, tms.size() );

        assertTrue( "We expected the release transformation and got " + tms.get(0), tms.get(0) instanceof ReleaseArtifactTransformation );
View Full Code Here

    extends PlexusTestCase
{
    public void testTransformationManager()
        throws Exception
    {
        ArtifactTransformationManager tm = (ArtifactTransformationManager) lookup( ArtifactTransformationManager.class );

        List tms = tm.getArtifactTransformations();

        assertEquals( 3, tms.size() );

        assertTrue( "We expected the release transformation and got " + tms.get(0), tms.get(0) instanceof ReleaseArtifactTransformation );
View Full Code Here

TOP

Related Classes of org.apache.maven.repository.legacy.resolver.transform.ArtifactTransformationManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.