From 226c08acf8899f47964f838911fcde0911fa3262 Mon Sep 17 00:00:00 2001 From: GwonHyeok Date: Tue, 14 Mar 2017 17:09:45 +0900 Subject: [PATCH] Add jitPack settings --- build.gradle | 1 + stickyswitch/build.gradle | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8100dd9..9b47e3b 100644 --- a/build.gradle +++ b/build.gradle @@ -9,6 +9,7 @@ buildscript { classpath 'com.android.tools.build:gradle:2.2.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.novoda:bintray-release:0.3.4' + classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' // Add this line // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/stickyswitch/build.gradle b/stickyswitch/build.gradle index 30a5aed..2b41243 100644 --- a/stickyswitch/build.gradle +++ b/stickyswitch/build.gradle @@ -1,6 +1,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' apply plugin: 'com.novoda.bintray-release' +apply plugin: 'com.github.dcendents.android-maven' android { compileSdkVersion 25 @@ -49,4 +50,6 @@ publish { website = 'https://github.com/GwonHyeok/StickySwitch' issueTracker = 'https://github.com/GwonHyeok/StickySwitch/issues' repository = 'https://github.com/GwonHyeok/StickySwitch.git' -} \ No newline at end of file +} + +group = 'com.github.GwonHyeok' \ No newline at end of file