Package org.apache.ivyde.common.model

Examples of org.apache.ivyde.common.model.IvyTag.addAttribute()


                + "or a pattern matching this name", false));
        exclude.addAttribute(new IvyTagAttribute("type", "the type of the artifact of the \n"
                + "dependency module to add to the exclude list, \n"
                + "or a pattern matching this name", false, new ListValueProvider(
                getDefault("type"))));
        exclude.addAttribute(new IvyTagAttribute("ext", "the extension of the artifact of the \n"
                + "dependency module to add to the exclude list, \n"
                + "or a pattern matching this name", false,
                new ListValueProvider(getDefault("ext"))));
        exclude.addAttribute(new IvyTagAttribute("matcher",
                "the matcher to use to match the modules to include", false, matcherNamesProvider));
View Full Code Here


                getDefault("type"))));
        exclude.addAttribute(new IvyTagAttribute("ext", "the extension of the artifact of the \n"
                + "dependency module to add to the exclude list, \n"
                + "or a pattern matching this name", false,
                new ListValueProvider(getDefault("ext"))));
        exclude.addAttribute(new IvyTagAttribute("matcher",
                "the matcher to use to match the modules to include", false, matcherNamesProvider));
        exclude.addAttribute(new IvyTagAttribute("conf",
                "comma separated list of the master configurations \n"
                        + "in which this artifact should be excluded. \n"
                        + "'*' wildcard can be used to designate all configurations of"
View Full Code Here

                + "dependency module to add to the exclude list, \n"
                + "or a pattern matching this name", false,
                new ListValueProvider(getDefault("ext"))));
        exclude.addAttribute(new IvyTagAttribute("matcher",
                "the matcher to use to match the modules to include", false, matcherNamesProvider));
        exclude.addAttribute(new IvyTagAttribute("conf",
                "comma separated list of the master configurations \n"
                        + "in which this artifact should be excluded. \n"
                        + "'*' wildcard can be used to designate all configurations of"
                        + " this module", false, masterConfsValueProvider));
        IvyTag conf6 = new IvyTag("conf", "configuration in which the artifact should be excluded");
View Full Code Here

                "comma separated list of the master configurations \n"
                        + "in which this artifact should be excluded. \n"
                        + "'*' wildcard can be used to designate all configurations of"
                        + " this module", false, masterConfsValueProvider));
        IvyTag conf6 = new IvyTag("conf", "configuration in which the artifact should be excluded");
        conf6.addAttribute(new IvyTagAttribute("name",
                "the name of the master configuration in which \n"
                        + "the enclosing artifact should be excluded", true,
                masterConfValueProvider));
        allConf.add(conf6);
        exclude.addChildIvyTag(conf6);
View Full Code Here

        // dependencies

        IvyTag conflicts = new IvyTag("conflicts", "conflicts managers definition section");
        IvyTag manager = new IvyTag("manager", "declares a conflict manager for this module");
        manager.addAttribute(new IvyTagAttribute("org",
                "the name, or a regexp matching the name of organisation \n"
                        + "to which this conflict manager should apply", false));
        manager.addAttribute(new IvyTagAttribute("module",
                "the name, or a regexp matching the name of module \n"
                        + "to which this conflict manager should apply", false));
View Full Code Here

        IvyTag conflicts = new IvyTag("conflicts", "conflicts managers definition section");
        IvyTag manager = new IvyTag("manager", "declares a conflict manager for this module");
        manager.addAttribute(new IvyTagAttribute("org",
                "the name, or a regexp matching the name of organisation \n"
                        + "to which this conflict manager should apply", false));
        manager.addAttribute(new IvyTagAttribute("module",
                "the name, or a regexp matching the name of module \n"
                        + "to which this conflict manager should apply", false));
        manager.addAttribute(new IvyTagAttribute("name", "the name of the conflict manager to use",
                false));
        manager.addAttribute(new IvyTagAttribute("rev",
View Full Code Here

                "the name, or a regexp matching the name of organisation \n"
                        + "to which this conflict manager should apply", false));
        manager.addAttribute(new IvyTagAttribute("module",
                "the name, or a regexp matching the name of module \n"
                        + "to which this conflict manager should apply", false));
        manager.addAttribute(new IvyTagAttribute("name", "the name of the conflict manager to use",
                false));
        manager.addAttribute(new IvyTagAttribute("rev",
                "a comma separated list of revisions this conflict manager should select", false));
        manager.addAttribute(new IvyTagAttribute("matcher",
                "the matcher to use to match the modules for which \n"
View Full Code Here

        manager.addAttribute(new IvyTagAttribute("module",
                "the name, or a regexp matching the name of module \n"
                        + "to which this conflict manager should apply", false));
        manager.addAttribute(new IvyTagAttribute("name", "the name of the conflict manager to use",
                false));
        manager.addAttribute(new IvyTagAttribute("rev",
                "a comma separated list of revisions this conflict manager should select", false));
        manager.addAttribute(new IvyTagAttribute("matcher",
                "the matcher to use to match the modules for which \n"
                        + "the conflict manager should be used", false));
        conflicts.addChildIvyTag(manager);
View Full Code Here

                        + "to which this conflict manager should apply", false));
        manager.addAttribute(new IvyTagAttribute("name", "the name of the conflict manager to use",
                false));
        manager.addAttribute(new IvyTagAttribute("rev",
                "a comma separated list of revisions this conflict manager should select", false));
        manager.addAttribute(new IvyTagAttribute("matcher",
                "the matcher to use to match the modules for which \n"
                        + "the conflict manager should be used", false));
        conflicts.addChildIvyTag(manager);
        ivyTag.addChildIvyTag(conflicts);
        addTag(conflicts);
View Full Code Here

        super(settings);

        // ivy-module
        IvyTag ivyTag = new IvyTag("ivy-module", "root tag of ivy file");
        ivyTag.setDoc("Root tag of any ivy-file.");
        ivyTag.addAttribute(new IvyTagAttribute("version",
                "The version of the ivy file specification \n"
                        + "should be '2.0' with current version of ivy", true));
        addTag(ivyTag);

        IValueProvider defaultOrganizationProvider = new IValueProvider() {
View Full Code Here

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.