Package hudson.scm

Examples of hudson.scm.SubversionTagAction$DescriptorImpl


            return includeUpstreamParameters;
        }
  @Override
  public Action getAction(AbstractBuild<?,?> build, TaskListener listener) {

    SubversionTagAction tagAction =  build.getAction(SubversionTagAction.class);
    RevisionParameterAction revisionAction = build.getAction(RevisionParameterAction.class);

    List<SvnInfo> infos = new ArrayList<SvnInfo>();

    if (tagAction == null ) {
      listener.getLogger().println(
        "[parameterizedtrigger] no SubversionTagAction found -- is this project an SVN project ?");
    } else {
      infos.addAll(tagAction.getTags().keySet());
    }

    if(includeUpstreamParameters == true) {
      if (revisionAction == null ) {
        listener.getLogger().println(
View Full Code Here

TOP

Related Classes of hudson.scm.SubversionTagAction$DescriptorImpl

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.