Package org.reficio.p2.bundler.impl

Examples of org.reficio.p2.bundler.impl.AquteBundler


        logResolved(resolutionRequest, resolutionResult);
        return resolutionResult;
    }

    private ArtifactResolver getArtifactResolver() {
        return new AetherResolver(repoSystem, repoSession, projectRepos);
    }
View Full Code Here


    public void facade_sonatypeAetherSystem() {
        // GIVEN
        Object repositorySystem = mock(org.sonatype.aether.RepositorySystem.class);

        // WHEN
        AetherFacade facade = Aether.facade(repositorySystem);

        // THEN
        assertTrue("Wrong facade type", facade instanceof AetherSonatypeFacade);
    }
View Full Code Here

    public void facade_eclipseAetherSystem() {
        // GIVEN
        Object repositorySystem = mock(org.eclipse.aether.RepositorySystem.class);

        // WHEN
        AetherFacade facade = Aether.facade(repositorySystem);

        // THEN
        assertTrue("Wrong facade type", facade instanceof AetherEclipseFacade);
    }
View Full Code Here

    protected final BundleUtils bundleUtils;
    private final boolean pedantic;

    public AquteBundler(boolean pedantic) {
        this.bundleUtils = new BundleUtils();
        this.pedantic = pedantic;
    }
View Full Code Here

TOP

Related Classes of org.reficio.p2.bundler.impl.AquteBundler

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.