From 17fba9f141839faadcb0a58c93cfdfa7b03f24b0 Mon Sep 17 00:00:00 2001 From: edgar Date: Fri, 30 Oct 2015 21:27:41 -0700 Subject: [PATCH] ready for first release --- joysticklibrary/build.gradle | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/joysticklibrary/build.gradle b/joysticklibrary/build.gradle index 94dd3c6..178b927 100644 --- a/joysticklibrary/build.gradle +++ b/joysticklibrary/build.gradle @@ -18,8 +18,20 @@ android { } } -dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) - testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:23.1.0' +buildscript { + repositories { + jcenter() + } + dependencies { + classpath 'com.novoda:bintray-release:0.3.4' + } +} + +publish { + userOrg = 'erz05' + groupId = 'com.github.erz05' + artifactId = 'JoyStick' + version = '1.0.0' + description = 'Android Library for JoyStick View' + website = 'https://github.com/erz05/JoyStick' }