From 87c9880257c878b3b20fa126a9baf3cc33d31f7d Mon Sep 17 00:00:00 2001 From: SireInsectus Date: Fri, 28 Feb 2014 12:32:05 -0800 Subject: [PATCH 1/2] Updates ignores to exclude IntelliJ project folder. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c069c83..b578b15 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ build *.iml .gradle +.idea/ \ No newline at end of file From e1913cd133534f511575d55076567740bbf64cc6 Mon Sep 17 00:00:00 2001 From: SireInsectus Date: Fri, 28 Feb 2014 12:34:55 -0800 Subject: [PATCH 2/2] Updated build.gradle to produce maven artifacts, Updated to for consistency with the other telegram-* projects. --- build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index caac0f0..8c73d5f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,12 @@ project.group = "org.telegram" - def basicVersion = '1.0' + +apply plugin: 'java' + if (project.hasProperty('buildIndex')) { project.version = basicVersion + '.' + project.buildIndex } else { project.version = basicVersion + '-SNAPSHOT' } -apply plugin: 'java' apply plugin: 'maven' \ No newline at end of file