diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-11-01 15:26:26 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-11-01 15:26:26 +0300 |
commit | 58fc8a79f3384fac8d6d88481d40453d5a659cb4 (patch) | |
tree | cd959edbd2cfb1aaf9036c1ef680082a2989efaa /runners/maven-plugin | |
parent | 769701f99a1aefbc9d385c1938c9c7d3a7b2e38e (diff) | |
download | dokka-58fc8a79f3384fac8d6d88481d40453d5a659cb4.tar.gz dokka-58fc8a79f3384fac8d6d88481d40453d5a659cb4.tar.bz2 dokka-58fc8a79f3384fac8d6d88481d40453d5a659cb4.zip |
Fix for CI builds
Diffstat (limited to 'runners/maven-plugin')
-rw-r--r-- | runners/maven-plugin/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runners/maven-plugin/build.gradle b/runners/maven-plugin/build.gradle index c0b9df2e..e69d1eb1 100644 --- a/runners/maven-plugin/build.gradle +++ b/runners/maven-plugin/build.gradle @@ -33,12 +33,12 @@ task generatePom << { task pluginDescriptor(type: Exec) { workingDir buildDir - commandLine 'mvn', '-e', '-B', 'org.apache.maven.plugins:maven-plugin-plugin:descriptor' + commandLine mvn, '-e', '-B', 'org.apache.maven.plugins:maven-plugin-plugin:descriptor' } task helpMojo(type: Exec) { workingDir buildDir - commandLine 'mvn', '-e', '-B', 'org.apache.maven.plugins:maven-plugin-plugin:helpmojo' + commandLine mvn, '-e', '-B', 'org.apache.maven.plugins:maven-plugin-plugin:helpmojo' } |