copy.libs

Here are the examples of the java api copy.libs taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

16 Source : ExternalDependencies.java
with Apache License 2.0
from specs-feup

public ExternalDependencies copy() {
    ExternalDependencies copy = new ExternalDependencies(disableRemoteDependencies);
    copy.includes.addAll(includes);
    copy.sources.addAll(sources);
    copy.projects.putAll(projects);
    copy.libs.addAll(libs);
    // this.unresolvedRepos.addAll(unresolvedRepos);
    // this.unresolvedReposPaths.addAll(unresolvedReposPaths);
    // Object is like a cache, can be shared
    copy.gitRepos = gitRepos;
    return copy;
}