Repository: helix
Updated Branches:
refs/heads/master e5fd7345c -> 196675cd9
[HELIX-619] Fixing build command to skip Tests
Project: http://git-wip-us.apache.org/repos/asf/helix/repo
Commit: http://git-wip-us.apache.org/repos/asf/helix/commit/196675cd
Tree: http://git-wip-us.apache.org/repos/asf/helix/tree/196675cd
Diff: http://git-wip-us.apache.org/repos/asf/helix/diff/196675cd
Branch: refs/heads/master
Commit: 196675cd9fdefb3d2d32eb7135b9d10efdd1313a
Parents: e5fd734
Author: Kishore Gopalakrishna <g.kishore@gmail.com>
Authored: Tue Jan 5 22:52:10 2016 -0800
Committer: Kishore Gopalakrishna <g.kishore@gmail.com>
Committed: Tue Jan 5 22:52:10 2016 -0800
----------------------------------------------------------------------
build | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/helix/blob/196675cd/build
----------------------------------------------------------------------
diff --git a/build b/build
index cf1a0eb..a2a9079 100755
--- a/build
+++ b/build
@@ -18,4 +18,6 @@
# specific language governing permissions and limitations
# under the License.
#
-mvn clean install -Dmaven.test.skip.exec=true
+
+# skip tests but keep compile with default build command.
+mvn clean install -DskipTests=true
|