@@ -2,14 +2,12 @@ apply plugin: 'kotlin'
22apply plugin : ' maven-publish'
33apply plugin : ' com.jfrog.bintray'
44
5- def libVersion = ' 0.4.1 '
5+ def libVersion = ' 0.4.2 '
66
77// to upload to jcenter use ./gradlew build bintrayUpload
88bintray {
9- def keyProps = new Properties ()
10- // keyProps.load(new FileInputStream(rootProject.file('viewbinder-secret/credentials.properties')))
11- user = keyProps[" bintrayUser" ]
12- key = keyProps[" bintrayKey" ]
9+ user = System . getenv(' bintrayUser' )
10+ key = System . getenv(' bintrayKey' )
1311 publications = [' MyPublication' ]
1412 pkg {
1513 repo = ' viewbinder'
@@ -50,14 +48,12 @@ publishing {
5048dependencies {
5149 compile " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
5250
53- // compileOnly 'com.google.android:support-v4:r7'
54- // javadocDeps 'com.google.android:support-v4:r7'
5551 compileOnly project(' :stub-android' )
5652 compileOnly project(' :stub-appcompat' )
5753 compileOnly project(' :stub-androidx' )
5854// javadocDeps project(':stub-android')
5955
6056 testImplementation ' junit:junit:4.12'
61- testImplementation ' org.mockito:mockito-core:2.7.11 '
57+ testImplementation ' org.mockito:mockito-core:2.27.0 '
6258}
6359
0 commit comments