Skip to content

Commit 7e3a41f

Browse files
Merge pull request #12 from Dmitry-Borodin/dev
Dev
2 parents b3a7dbc + c9db169 commit 7e3a41f

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

viewbinder-android/build.gradle

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@ apply plugin: 'kotlin'
22
apply plugin: 'maven-publish'
33
apply 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
88
bintray {
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 {
5048
dependencies {
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

Comments
 (0)