Package org.eclipse.tycho.model

Examples of org.eclipse.tycho.model.Target


            } catch (URISyntaxException e) {
                getLogger().warn("Could not parse repository URL", e);
            }
        }

        Target target = configuration.getTarget();

        if (target != null) {
            Set<URI> uris = new HashSet<URI>();

            for (Target.Location location : target.getLocations()) {
                String type = location.getType();
                if (!"InstallableUnit".equalsIgnoreCase(type)) {
                    getLogger().warn("Target location type: " + type + " is not supported");
                    continue;
                }
View Full Code Here

TOP

Related Classes of org.eclipse.tycho.model.Target

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.