From 58fc8a79f3384fac8d6d88481d40453d5a659cb4 Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Tue, 1 Nov 2016 15:26:26 +0300 Subject: Fix for CI builds --- gradle.properties | 5 ++++- runners/maven-plugin/build.gradle | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 12256f0b..fd253363 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,4 +11,7 @@ maven_version=3.0.5 maven_archiver_version=2.5 plexus_utils_version=3.0.22 plexus_archiver_version=3.4 -maven_plugin_tools_version=3.4 \ No newline at end of file +maven_plugin_tools_version=3.4 + +#For CI +mvn=mvn \ No newline at end of file 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' } -- cgit