Package com.cloudbees.sdk.boot2

Source Code of com.cloudbees.sdk.boot2.BootMavenRepositorySystemSessionDecorator

/*
* Copyright 2010-2013, CloudBees Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.cloudbees.sdk.boot2;

import com.cloudbees.sdk.maven.ConsoleRepositoryListener;
import com.cloudbees.sdk.maven.ConsoleTransferListener;
import com.cloudbees.sdk.maven.MavenRepositorySystemSessionDecorator;
import org.apache.maven.repository.internal.MavenRepositorySystemSession;

/**
* {@link com.cloudbees.sdk.maven.MavenRepositorySystemSessionFactory} that honors the verbose flag.
*
* @author Kohsuke Kawaguchi
*/
public class BootMavenRepositorySystemSessionDecorator extends MavenRepositorySystemSessionDecorator {

    private static boolean verbose;

    @Override
    public MavenRepositorySystemSession decorate(MavenRepositorySystemSession session) {
        if (verbose) {
            session.setTransferListener(new ConsoleTransferListener());
            session.setRepositoryListener(new ConsoleRepositoryListener());
        }
        return session;
    }

    /**
     * Force update from the remote repository.
     */
    public static void setVerbose(boolean v) {
        verbose = v;
    }
}
TOP

Related Classes of com.cloudbees.sdk.boot2.BootMavenRepositorySystemSessionDecorator

TOP
Copyright © 2018 www.massapi.com. 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.