Skip to content

Commit 373ae50

Browse files
committed
add bintray upload gradle script
1 parent beeb5c4 commit 373ae50

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

lib/build.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1+
buildscript {
2+
repositories {
3+
jcenter()
4+
}
5+
dependencies {
6+
classpath 'com.novoda:android-bintray-release:0.2.3'
7+
}
8+
}
9+
110
apply plugin: 'com.android.library'
11+
apply plugin: 'android-bintray-release'
212

313
android {
414
compileSdkVersion 19
@@ -19,6 +29,15 @@ android {
1929
}
2030
}
2131

32+
publish {
33+
groupId = 'net.ypresto.androidtranscoder'
34+
artifactId = 'android-transcoder'
35+
version = '0.1.3'
36+
licences = ['Apache-2.0']
37+
website = 'https://github.com/ypresto/android-transcoder'
38+
autoPublish = false
39+
}
40+
2241
dependencies {
2342
compile fileTree(dir: 'libs', include: ['*.jar'])
2443
}

0 commit comments

Comments
 (0)