Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update objenesis to 3.1 #1998

Merged
merged 1 commit into from Aug 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions gradle/dependencies.gradle
Expand Up @@ -25,8 +25,7 @@ libraries.errorproneTestApi = "com.google.errorprone:error_prone_test_helpers:${

libraries.autoservice = "com.google.auto.service:auto-service:1.0-rc5"

// objenesis 3.x with full Java 11 support requires Java 8, bump version when Java 7 support is dropped
libraries.objenesis = 'org.objenesis:objenesis:2.6'
libraries.objenesis = 'org.objenesis:objenesis:3.1'

libraries.asm = 'org.ow2.asm:asm:7.0'

Expand Down
2 changes: 1 addition & 1 deletion gradle/mockito-core/osgi.gradle
Expand Up @@ -22,7 +22,7 @@ jar {
'junit.*;resolution:=optional',
'org.junit.*;resolution:=optional',
'org.hamcrest;resolution:=optional',
'org.objenesis;version="[2.5,3.0)"',
'org.objenesis;version="[3.1,4.0)"',
'org.opentest4j.*;resolution:=optional',
'org.mockito.*'
].join(','),
Expand Down