Skip to content

Commit b1eb99c

Browse files
committed
Added bintray plugin to build.gradle.
1 parent 4a85a34 commit b1eb99c

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath 'com.android.tools.build:gradle:2.1.0-rc1'
9-
9+
classpath 'com.novoda:bintray-release:0.3.4'
1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
1212
}

library/build.gradle

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'bintray-release'
23

34
android {
45
compileSdkVersion 23
@@ -7,8 +8,8 @@ android {
78
defaultConfig {
89
minSdkVersion 8
910
targetSdkVersion 23
10-
versionCode 4
11-
versionName "1.0.3"
11+
versionCode 5
12+
versionName "1.0.4"
1213
}
1314
buildTypes {
1415
release {
@@ -27,4 +28,11 @@ dependencies {
2728
compile 'com.android.support:cardview-v7:23.3.0'
2829
}
2930

30-
apply from: './maven.gradle'
31+
publish {
32+
userOrg = 'yavski'
33+
groupId = 'io.github.yavski'
34+
artifactId = 'fab-speed-dial'
35+
publishVersion = '1.0.4'
36+
}
37+
38+
// apply from: './maven.gradle'

0 commit comments

Comments
 (0)