1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-12-23 02:46:19 +08:00

bump up 1.4.0

This commit is contained in:
wasabeef
2016-02-28 04:58:55 +09:00
parent 3e0738de0a
commit a908abc7d4
9 changed files with 317 additions and 19 deletions

View File

@@ -14,6 +14,8 @@ android {
// Warning:Renderscript support mode is not currently supported with renderscript target 21+
renderscriptTargetApi RENDERSCRIPT_TARGET_API as int
renderscriptSupportModeEnabled true
consumerProguardFiles 'proguard-rules.txt'
}
}
@@ -22,6 +24,26 @@ dependencies {
provided "jp.co.cyberagent.android.gpuimage:gpuimage-library:${GPUIMAGE_VERSION}"
}
task androidJavadocs(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}
task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
classifier = 'javadoc'
from androidJavadocs.destinationDir
}
task androidSourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.java.srcDirs
}
artifacts {
archives androidSourcesJar
archives androidJavadocsJar
}
publish {
userOrg = POM_DEVELOPER_ID
groupId = GROUP