Gradle Exec Task Type

From NovaOrdis Knowledge Base
Revision as of 09:14, 11 November 2020 by Ovidiu (talk | contribs) (Created page with "=External= * https://docs.gradle.org/current/dsl/org.gradle.api.tasks.Exec.html =Internal= * Gradle Tasks | Predefined Task Types =O...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

External

Internal

Overview

Example

task bats(type: Exec) {
  workingDir 'src/test/docker'
  commandLine 'bats', 'tests.bats'
}