From 931f2858bc7cde1a841c08f1d40d3586ea3283aa Mon Sep 17 00:00:00 2001 From: Hannes Junnila Date: Sat, 18 Jul 2015 13:44:45 +0300 Subject: [PATCH] Enable building a Maven artifact --- build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 53e79b6ac8..51cdc88b27 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,7 @@ apply plugin: 'java' +apply plugin: 'maven' + +group = 'graphql' sourceCompatibility = 1.7 version = '1.0' @@ -20,4 +23,4 @@ dependencies { task wrapper(type: Wrapper) { gradleVersion = '2.5' -} \ No newline at end of file +}