Skip to content

Commit

Permalink
Update to mockito 2.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
moltmann authored and drewhannay committed Aug 17, 2018
1 parent fcb8ef0 commit d0111ed
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -116,14 +116,14 @@ For Mockito support, download the latest .jar via Maven:
<dependency>
<groupId>com.linkedin.dexmaker</groupId>
<artifactId>dexmaker-mockito</artifactId>
<version>2.19.1</version>
<version>2.21.0</version>
<type>pom</type>
</dependency>
```

or Gradle:
```
androidTestCompile 'com.linkedin.dexmaker:dexmaker-mockito:2.19.1'
androidTestCompile 'com.linkedin.dexmaker:dexmaker-mockito:2.21.0'
```

_Note: The dependency on Mockito will be transitively included, so there's no need to specify both Mockito AND dexmaker-mockito_
Expand Down
2 changes: 1 addition & 1 deletion dexmaker-mockito-inline-extended-tests/build.gradle
Expand Up @@ -50,5 +50,5 @@ dependencies {
implementation 'com.android.support.test:runner:1.0.2'
implementation 'com.android.support.test:rules:1.0.2'

api 'org.mockito:mockito-core:2.19.0', { exclude group: 'net.bytebuddy' }
api 'org.mockito:mockito-core:2.21.0', { exclude group: 'net.bytebuddy' }
}
2 changes: 1 addition & 1 deletion dexmaker-mockito-inline-extended/build.gradle
Expand Up @@ -119,5 +119,5 @@ repositories {
dependencies {
implementation project(':dexmaker-mockito-inline')

implementation 'org.mockito:mockito-core:2.19.0', { exclude group: 'net.bytebuddy' }
implementation 'org.mockito:mockito-core:2.21.0', { exclude group: 'net.bytebuddy' }
}
2 changes: 1 addition & 1 deletion dexmaker-mockito-inline-tests/build.gradle
Expand Up @@ -50,5 +50,5 @@ dependencies {

implementation 'junit:junit:4.12'
implementation 'com.android.support.test:runner:1.0.2'
api 'org.mockito:mockito-core:2.19.0', { exclude group: 'net.bytebuddy' }
api 'org.mockito:mockito-core:2.21.0', { exclude group: 'net.bytebuddy' }
}
2 changes: 1 addition & 1 deletion dexmaker-mockito-inline/build.gradle
Expand Up @@ -113,6 +113,6 @@ repositories {
dependencies {
implementation project(':dexmaker')

implementation 'org.mockito:mockito-core:2.19.0', { exclude group: 'net.bytebuddy' }
implementation 'org.mockito:mockito-core:2.21.0', { exclude group: 'net.bytebuddy' }
}

2 changes: 1 addition & 1 deletion dexmaker-mockito-tests/build.gradle
Expand Up @@ -42,5 +42,5 @@ dependencies {

implementation 'com.android.support.test:runner:0.5'
implementation 'junit:junit:4.12'
api 'org.mockito:mockito-core:2.19.0', { exclude group: 'net.bytebuddy' }
api 'org.mockito:mockito-core:2.21.0', { exclude group: 'net.bytebuddy' }
}
2 changes: 1 addition & 1 deletion dexmaker-mockito/build.gradle
Expand Up @@ -26,5 +26,5 @@ repositories {
dependencies {
implementation project(':dexmaker')

implementation 'org.mockito:mockito-core:2.19.0', { exclude group: 'net.bytebuddy' }
implementation 'org.mockito:mockito-core:2.21.0', { exclude group: 'net.bytebuddy' }
}
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -24,4 +24,4 @@ org.gradle.configureondemand=false
# org.gradle.parallel=true

GROUP_ID=com.linkedin.dexmaker
VERSION_NAME=2.19.2-SNAPSHOT
VERSION_NAME=2.21.0-SNAPSHOT

0 comments on commit d0111ed

Please sign in to comment.