All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.reactiverse.vertx.maven.plugin.mojos.DependencySet Maven / Gradle / Ivy

Go to download

A plugin to allow package, start, stop, run of Eclipse Vert.x applications

There is a newer version: 2.0.1
Show newest version
/*
 *
 *   Copyright (c) 2016-2018 Red Hat, Inc.
 *
 *   Red Hat licenses this file to you 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 io.reactiverse.vertx.maven.plugin.mojos;

import java.util.List;

/**
 * @author Clement Escoffier
 */
public class DependencySet {

    /**
     * Includes all compile dependencies.
     */
    public static final DependencySet ALL = new DependencySet();

    /**
     * Set of dependencies to includes.
     */
    private List includes;

    /**
     * Set of dependencies to excludes.
     */
    private List excludes;

    /**
     * Sets the dependency scope for this {@link DependencySet}.
     * Default scope value is "runtime".
     */
    private String scope = "runtime";

    /**
     * The dependency set options
     */
    private DependencySetOptions options;


    /**
     * Determines whether transitive dependencies will be included in the processing of the
     * current dependency set. If true, includes/excludes will apply
     * to transitive dependency artifacts in addition to the main project dependency artifacts.
     * If false, useTransitiveFiltering is meaningless, and includes/excludes only affect the
     * immediate dependencies of the project. By default, this value is true.
     */
    private boolean useTransitiveDependencies = true;

    public DependencySet addExclude(String string) {
        getExcludes().add(string);
        return this;
    }


    public DependencySet addInclude(String string) {
        getIncludes().add(string);
        return this;
    }

    public List getExcludes() {
        if (this.excludes == null) {
            this.excludes = new java.util.ArrayList<>();
        }

        return this.excludes;
    }

    public List getIncludes() {
        if (this.includes == null) {
            this.includes = new java.util.ArrayList<>();
        }

        return this.includes;
    }

    /**
     * Get sets the dependency scope for this {@link DependencySet}.
     * Default scope value is "runtime".
     *
     * @return String the scope
     */
    public String getScope() {
        return this.scope;
    }

    /**
     * Get determines whether transitive dependencies will be included in the processing of
     * the current dependency set. If true, includes/excludes/useTransitiveFiltering
     * will apply to transitive dependency artifacts. If false, useTransitiveFiltering is
     * meaningless, and includes/excludes only affect the immediate dependencies of the project.
     * By default, this value is true.
     *
     * @return boolean whether or not transitive dependencies are embedded
     */
    public boolean isUseTransitiveDependencies() {
        return this.useTransitiveDependencies;
    }

    public DependencySet removeExclude(String string) {
        getExcludes().remove(string);
        return this;
    }

    public DependencySet removeInclude(String string) {
        getIncludes().remove(string);
        return this;
    }

    /**
     * Set when <exclude> subelements are present, they define a set of dependency artifact
     * coordinates to exclude. If none is present, then <excludes> represents no exclusions.
     * 

* Artifact coordinates may be given in simple groupId:artifactId form, or they may be fully * qualified in the form groupId:artifactId:type[:classifier]:version. * Additionally, wildcards can be used, as in *:vertx-*. * * @param excludes the list of excludes * @return the current {@link DependencySetOptions} */ public DependencySet setExcludes(List excludes) { this.excludes = excludes; return this; } /** * Set when <include> subelements are present, they define a set of artifact coordinates * to include. If none is present, then <includes> represents all valid values. *

* Artifact coordinates may be given in simple groupId:artifactId form, or they may be fully * qualified in the form groupId:artifactId:type[:classifier]:version. Additionally, wildcards * can be used, as in *:vertx-*. * * @param includes the list of includes * @return the current {@link DependencySetOptions} */ public DependencySet setIncludes(List includes) { this.includes = includes; return this; } /** * Set sets the dependency scope for this {@link DependencySet}. * Default scope value is "runtime". * * @param scope the scope, must not be {@code null} * @return the current {@link DependencySetOptions} */ public DependencySet setScope(String scope) { this.scope = scope; return this; } /** * Set determines whether transitive dependencies will be included in the processing of * the current dependency set. If true, includes/excludes/useTransitiveFiltering * will apply to transitive dependency artifacts in addition to the main project * dependency artifacts. If false, useTransitiveFiltering is meaningless, and * includes/excludes only affect the immediate dependencies of the project. * By default, this value is true. * * @param useTransitiveDependencies whether or not transitive dependencies are embedded * @return the current {@link DependencySetOptions} */ public DependencySet setUseTransitiveDependencies(boolean useTransitiveDependencies) { this.useTransitiveDependencies = useTransitiveDependencies; return this; } /** * @return the dependency set options used to configure the included and excluded files. */ public DependencySetOptions getOptions() { if (options == null) { return new DependencySetOptions(); } return options; } /** * Sets the dependency set options used to configure the included and excluded files. * * @param options the options * @return the current {@link DependencySetOptions} */ public DependencySet setOptions(DependencySetOptions options) { this.options = options; return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy