Tabnine Logo
Exec.mustRunAfter
Code IndexAdd Tabnine to your IDE (free)

How to use
mustRunAfter
method
in
org.gradle.api.tasks.Exec

Best Java code snippets using org.gradle.api.tasks.Exec.mustRunAfter (Showing top 3 results out of 315)

origin: gradle.plugin.org.shipkit/shipkit

  public void execute(final Exec t) {
    t.setDescription("Stashes current changes");
    t.commandLine("git", "stash");
    t.mustRunAfter(SOFT_RESET_COMMIT_TASK);
  }
});
origin: gradle.plugin.org.shipkit/shipkit

  public void execute(final Exec t) {
    t.mustRunAfter(GIT_COMMIT_TASK);
    final String tag = GitUtil.getTag(conf, project);
    t.setDescription("Creates new version tag '" + tag + "'");
    deferredConfiguration(project, new Runnable() {
      @Override
      public void run() {
        t.commandLine("git", "tag", "-a", tag, "-m",
            GitUtil.getCommitMessage(conf, "Created new tag " + tag));
      }
    });
  }
});
origin: gradle.plugin.org.shipkit/shipkit

  public void execute(final Exec t) {
    t.setDescription("Deletes version tag '" + getTag(conf, project) + "'");
    t.commandLine("git", "tag", "-d", getTag(conf, project));
    t.mustRunAfter(performPush);
  }
});
org.gradle.api.tasksExecmustRunAfter

Popular methods of Exec

  • dependsOn
  • commandLine
  • exec
  • setDescription
  • doFirst
  • setCommandLine
  • setGroup
  • workingDir
  • configure
  • doLast
  • execute
  • getCommandLine
  • execute,
  • getCommandLine,
  • getInputs,
  • getOutputs,
  • setIgnoreExitValue

Popular in Java

  • Parsing JSON documents to java classes using gson
  • requestLocationUpdates (LocationManager)
  • addToBackStack (FragmentTransaction)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • Runner (org.openjdk.jmh.runner)
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now