Package ru.aristar.jnuget.files.nuspec

Examples of ru.aristar.jnuget.files.nuspec.Dependency


        if (dependencies == null || dependencies.isEmpty()) {
            return list;
        }
        String cleanDependencies = dependencies.replaceAll(" ", "");
        for (String dependencyString : cleanDependencies.split("[\\|]")) {
            Dependency dependency = Dependency.parseString(dependencyString);
            if (dependency != null) {
                list.add(dependency);
            }
        }
        return list;
View Full Code Here

TOP

Related Classes of ru.aristar.jnuget.files.nuspec.Dependency

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.