mirror of
https://github.com/zhigang1992/AndroidVideoCache.git
synced 2026-01-31 08:39:09 +08:00
37 lines
720 B
Groovy
37 lines
720 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.novoda:bintray-release:0.3.4'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'idea'
|
|
apply plugin: 'java'
|
|
apply plugin: 'bintray-release'
|
|
|
|
idea {
|
|
module {
|
|
downloadJavadoc = true
|
|
downloadSources = true
|
|
}
|
|
}
|
|
|
|
targetCompatibility = '1.7'
|
|
sourceCompatibility = '1.7'
|
|
|
|
dependencies {
|
|
compile 'com.google.android:android:1.6_r2'
|
|
compile 'org.slf4j:slf4j-android:1.7.21'
|
|
}
|
|
|
|
publish {
|
|
userOrg = 'alexeydanilov'
|
|
groupId = 'com.danikula'
|
|
artifactId = 'videocache'
|
|
publishVersion = '2.6.3'
|
|
description = 'Cache support for android VideoView'
|
|
website = 'https://github.com/danikula/AndroidVideoCache'
|
|
}
|