diff --git a/fix-bnd-config.patch b/fix-bnd-config.patch
deleted file mode 100644
index 8716061..0000000
--- a/fix-bnd-config.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/conf/mockito-core.bnd.orig 2014-12-31 16:43:56.000000000 +0000
-+++ b/conf/mockito-core.bnd 2015-09-01 19:36:18.534549995 +0100
-@@ -1,21 +1,19 @@
---versionpolicy=[${version;==;${@}},${version;+;${@}})
--
--Bundle-Name= Mockito Mock Library for Java. Core bundle requires Hamcrest-core and Objenesis.
-+Bundle-Name= Mockito Mock Library for Java.
- Bundle-SymbolicName= org.mockito.mockito-core
- Bundle-Version= ${version}
-
- Export-Package= !org.mockito.asm.*, \
- !org.mockito.cglib.*, \
- !org.mockito.internal.*, \
-- org.mockito.*;version=${version}
-+ org.mockito.*
-
- Import-Package= junit.*;resolution:=optional, \
- org.junit.*;resolution:=optional, \
- org.apache.tools.ant.*;resolution:=optional, \
-- org.hamcrest;version="[1.0,3.0)", \
-- org.objenesis;version="[2.1,3.0)", \
-+ org.objenesis;version="[1.0,3.0)", \
- org.mockito.asm.signature;resolution:=optional, \
-- org.mockito.*
-+ org.mockito.*, \
-+ net.sf.cglib.core,net.sf.cglib.proxy,net.sf.cglib.reflect
-
- Private-Package: org.mockito.*
-
diff --git a/fixup-ant-script.patch b/fixup-ant-script.patch
deleted file mode 100644
index 7daf9b4..0000000
--- a/fixup-ant-script.patch
+++ /dev/null
@@ -1,87 +0,0 @@
---- a/build.xml.orig 2014-12-31 16:43:56.000000000 +0000
-+++ b/build.xml 2015-06-22 09:20:12.859059775 +0100
-@@ -81,6 +81,7 @@
-
-
-
-+
-
-
-
-@@ -207,18 +208,14 @@
-
-
-
--
--
-+
-+
-
-
-
-
--
--
--
-
--
--
-+
-
-
-
-@@ -319,53 +316,10 @@
-
- ]]>
-
--
--
--
--
--
--
--
--
--
-- ]]>
--
-
-
-
--
--
--
--
--
--
-+
-
-
-
diff --git a/make-mockito-sourcetarball.sh b/make-mockito-sourcetarball.sh
new file mode 100644
index 0000000..db3fb19
--- /dev/null
+++ b/make-mockito-sourcetarball.sh
@@ -0,0 +1,19 @@
+#!/bin/bash -ex
+
+VERSION=2.23.9
+SRCDIR=mockito-${VERSION}
+
+git clone https://github.com/mockito/mockito.git ${SRCDIR}
+pushd $SRCDIR
+git archive --format=tar --prefix=${SRCDIR}/ v${VERSION} > ../${SRCDIR}.tar
+popd
+
+rm -rf ${SRCDIR}
+
+tar -xf ${SRCDIR}.tar
+rm ${SRCDIR}.tar
+pushd ${SRCDIR}
+rm -rf `find -name *.jar` gradlew gradlew.bat src/javadoc
+popd
+
+tar -cvJf mockito-${VERSION}.tar.xz ${SRCDIR}
diff --git a/mockito-2.23.9.tar.xz b/mockito-2.23.9.tar.xz
new file mode 100644
index 0000000..1062548
Binary files /dev/null and b/mockito-2.23.9.tar.xz differ
diff --git a/mockito-core.pom b/mockito-core.pom
new file mode 100644
index 0000000..b6ca285
--- /dev/null
+++ b/mockito-core.pom
@@ -0,0 +1,683 @@
+
+
+ 4.0.0
+ org.mockito
+ mockito-core
+ @VERSION@
+ mockito-core
+ jar
+ https://github.com/mockito/mockito
+ Mockito mock objects library core API and implementation
+
+
+
+ org.ow2.asm
+ asm
+ 7.0
+ compile
+
+
+ net.bytebuddy
+ byte-buddy
+ 1.9.3
+ compile
+
+
+ net.bytebuddy
+ byte-buddy-agent
+ 1.9.3
+ compile
+
+
+ org.objenesis
+ objenesis
+ 2.6
+ compile
+
+
+ org.hamcrest
+ hamcrest-core
+ 1.3
+ provided
+
+
+ junit
+ junit
+ 4.12
+ provided
+
+
+ org.assertj
+ assertj-core
+ 2.9.0
+ test
+
+
+
+
+
+ org.apache.felix
+ maven-bundle-plugin
+ 3.5.0
+
+ ${project.build.directory}/osgi
+
+ <_include>-osgi.bnd
+
+
+
+
+ process-classes
+
+ manifest
+
+
+
+
+
+ org.codehaus.mojo
+ exec-maven-plugin
+ 1.6.0
+
+
+ process-classes
+
+ exec
+
+
+
+
+ cp
+
+ ${project.build.outputDirectory}/org/mockito/internal/creation/bytebuddy/MockMethodDispatcher.class
+ ${project.build.outputDirectory}/org/mockito/internal/creation/bytebuddy/MockMethodDispatcher.raw
+
+
+
+
+ org.apache.maven.plugins
+ maven-jar-plugin
+ 3.1.0
+
+
+ ${project.build.directory}/osgi/MANIFEST.MF
+
+
+ **/MockMethodDispatcher.class
+
+
+
+
+
+
+
+ The MIT License
+ https://github.com/mockito/mockito/blob/master/LICENSE
+ repo
+
+
+
+ https://github.com/mockito/mockito.git
+
+
+ https://github.com/mockito/mockito/issues
+ GitHub issues
+
+
+ https://travis-ci.org/mockito/mockito
+ TravisCI
+
+
+
+ mockitoguy
+ Szczepan Faber
+
+ Core developer
+
+ https://github.com/mockitoguy
+
+
+ bric3
+ Brice Dutheil
+
+ Core developer
+
+ https://github.com/bric3
+
+
+ raphw
+ Rafael Winterhalter
+
+ Core developer
+
+ https://github.com/raphw
+
+
+ TimvdLippe
+ Tim van der Lippe
+
+ Core developer
+
+ https://github.com/TimvdLippe
+
+
+
+
+ continuous-delivery-drone
+ https://github.com/continuous-delivery-drone
+
+
+ shipkit.org automated bot
+ https://github.com/shipkit-org
+
+
+ Marcin Zajączkowski
+ https://github.com/szpak
+
+
+ Pascal Schumacher
+ https://github.com/PascalSchumacher
+
+
+ Igor Czechowski
+ https://github.com/iczechowski
+
+
+ Bartosz Bańkowski
+ https://github.com/bbankowski
+
+
+ Erhard Pointl
+ https://github.com/epeee
+
+
+ Allon Murienik
+ https://github.com/mureinik
+
+
+ Christian Schwarz
+ https://github.com/ChristianSchwarz
+
+
+ Lukasz Szewc
+ https://github.com/lukasz-szewc
+
+
+ Marcin Grzejszczak
+ https://github.com/marcingrzejszczak
+
+
+ Marc Philipp
+ https://github.com/marcphilipp
+
+
+ Sangwoo Lee
+ https://github.com/marchpig
+
+
+ Philip P. Moltmann
+ https://github.com/moltmann
+
+
+ Tim Perry
+ https://github.com/pimterry
+
+
+ David J. M. Karlsen
+ https://github.com/davidkarlsen
+
+
+ Dawud-xx
+ https://github.com/Dawud-xx
+
+
+ Lovro Pandžić
+ https://github.com/lpandzic
+
+
+ Werner Beroux
+ https://github.com/wernight
+
+
+ Tsuyoshi Murakami
+ https://github.com/tmurakami
+
+
+ Serge Bishyr
+ https://github.com/SeriyBg
+
+
+ Dmitry Timofeev
+ https://github.com/dmitry-timofeev
+
+
+ jerzykrlk
+ https://github.com/jerzykrlk
+
+
+ alberskib
+ https://github.com/alberskib
+
+
+ Joseph Walton
+ https://github.com/josephw
+
+
+ Stephan Schroevers
+ https://github.com/Stephan202
+
+
+ Michal Kordas
+ https://github.com/mkordas
+
+
+ Kamil Szymański
+ https://github.com/kamilszymanski
+
+
+ Hynek Mlnařík
+ https://github.com/hmlnarik
+
+
+ Hugh Hamill
+ https://github.com/hughwphamill
+
+
+ Hans Joachim Desserud
+ https://github.com/hansjoachim
+
+
+ Gunnar Wagenknecht
+ https://github.com/guw
+
+
+ Dmytro Chyzhykov
+ https://github.com/ffbit
+
+
+ r-smirnov
+ https://github.com/r-smirnov
+
+
+ ianparkinson
+ https://github.com/ianparkinson
+
+
+ dmac100
+ https://github.com/dmac100
+
+
+ Vineet Kumar
+ https://github.com/vin
+
+
+ Urs Metz
+ https://github.com/UrsMetz
+
+
+ Tarnowski Jan
+ https://github.com/tarnowskijan
+
+
+ Roman Elizarov
+ https://github.com/elizarov
+
+
+ Roland Hauser
+ https://github.com/SourcePond
+
+
+ Michał Borek
+ https://github.com/michalborek
+
+
+ Michael Pinnegar
+ https://github.com/Jazzepi
+
+
+ Marius Volkhart
+ https://github.com/MariusVolkhart
+
+
+ Lucas Cavalcanti
+ https://github.com/lucascs
+
+
+ Leonardo Carrasco
+ https://github.com/thesnowgoose
+
+
+ Krzysztof Wolny
+ https://github.com/vanta
+
+
+ Jeffrey Falgout
+ https://github.com/JeffreyFalgout
+
+
+ Ismael Juma
+ https://github.com/ijuma
+
+
+ Emory Merryman
+ https://github.com/AFnRFCb7
+
+
+ Clark Brewer
+ https://github.com/brewerc
+
+
+ Carlos Aguayo
+ https://github.com/carlosaguayo
+
+
+ Arend v. Reinersdorff
+ https://github.com/arend-von-reinersdorff
+
+
+ Alberto Scotto
+ https://github.com/alb-i986
+
+
+ yyvess
+ https://github.com/yyvess
+
+
+ 訾明华
+ https://github.com/ziminghua
+
+
+ wuwen
+ https://github.com/wuwen5
+
+
+ test111
+ https://github.com/tradingreason
+
+
+ Xin Liu
+ https://github.com/L-KID
+
+
+ Wojtek Wilk
+ https://github.com/wwilk
+
+
+ Walter Scott Johnson
+ https://github.com/li-wjohnson
+
+
+ Walter Johnson
+ https://github.com/li-wjohnson
+
+
+ Vladislav
+ https://github.com/VChirp
+
+
+ Vivian Pennel
+ https://github.com/Vp3n
+
+
+ Venkata Jaswanth
+ https://github.com/aj-jaswanth
+
+
+ Tom Ball
+ https://github.com/tomball
+
+
+ Tokuhiro Matsuno
+ https://github.com/tokuhirom
+
+
+ Tim Cooke
+ https://github.com/trcooke
+
+
+ Stuart Blair
+ https://github.com/stuartblair
+
+
+ Simen Bekkhus
+ https://github.com/SimenB
+
+
+ Scott Markwell
+ https://github.com/smarkwell
+
+
+ Sanne Grinovero
+ https://github.com/Sanne
+
+
+ Roi Atalla
+ https://github.com/ra4king
+
+
+ Robert Stupp
+ https://github.com/snazy
+
+
+ Radim Kubacki
+ https://github.com/radimk
+
+
+ Philipp Jardas
+ https://github.com/phjardas
+
+
+ Oliver Drotbohm
+ https://github.com/odrotbohm
+
+
+ Niklas Baudy
+ https://github.com/vanniktech
+
+
+ Myrle Krantz
+ https://github.com/myrle-krantz
+
+
+ Matt Dean
+ https://github.com/mattbdean
+
+
+ Markus Wüstenberg
+ https://github.com/markuswustenberg
+
+
+ Maciej Kuster
+ https://github.com/NagRock
+
+
+ MEDDAH Julien
+ https://github.com/MeddahJ
+
+
+ Ludovic Meurillon
+ https://github.com/LudoMeurillon
+
+
+ Ludovic Chane
+ https://github.com/ludochane
+
+
+ Krisztian Milesz
+ https://github.com/mileszk
+
+
+ Kengo TODA
+ https://github.com/KengoTODA
+
+
+ Kayvan Najafzadeh
+ https://github.com/kayvannj
+
+
+ José Paumard
+ https://github.com/JosePaumard
+
+
+ Jonathan Lloyd
+ https://github.com/lloydjm77
+
+
+ Johnny Lim
+ https://github.com/izeye
+
+
+ Jesse Englert
+ https://github.com/jpenglert
+
+
+ Jeremy Rickard
+ https://github.com/jrrickard
+
+
+ Ivan Vershinin
+ https://github.com/vershinin
+
+
+ Igor Kostenko
+ https://github.com/isanych
+
+
+ Igor Conrado Alves de Lima
+ https://github.com/igorcadelima
+
+
+ Gaëtan Muller
+ https://github.com/MGaetan89
+
+
+ Felix W. Dekker
+ https://github.com/FWDekker
+
+
+ Evgeny Astafyev
+ https://github.com/astafev
+
+
+ Eugene Ivakhno
+ https://github.com/eugene-ivakhno
+
+
+ Erik Bakker
+ https://github.com/eamelink
+
+
+ Dmitriy Zaitsev
+ https://github.com/DmitriyZaitsev
+
+
+ Divyansh Gupta
+ https://github.com/divyansh-gupta
+
+
+ Dennis Cheung
+ https://github.com/hkdennis2k
+
+
+ Denis Zharkov
+ https://github.com/dzharkov
+
+
+ David Xia
+ https://github.com/davidxia
+
+
+ David Gageot
+ https://github.com/dgageot
+
+
+ Christian Persson
+ https://github.com/Saser
+
+
+ Bruno Krebs
+ https://github.com/brunokrebs
+
+
+ Ben Yu
+ https://github.com/fluentfuture
+
+
+ Bastien Jansen
+ https://github.com/bjansen
+
+
+ Bartosz Miller
+ https://github.com/BartoszMiller
+
+
+ Ariel Isaac
+ https://github.com/Ariel-Isaacm
+
+
+ Anuraag Agrawal
+ https://github.com/anuraaga
+
+
+ André Gonçalves
+ https://github.com/andrerigon
+
+
+ Andrey
+ https://github.com/andreyrmg
+
+
+ Andrei Solntsev
+ https://github.com/asolntsev
+
+
+ Allan Wang
+ https://github.com/AllanWang
+
+
+ Alex Simkin
+ https://github.com/SimY4
+
+
+ rberghegger
+ https://github.com/rberghegger
+
+
+ philipa
+ https://github.com/philipa
+
+
+ paulduffin
+ https://github.com/paulduffin
+
+
+ mgrafl
+ https://github.com/mgrafl
+
+
+ jmetertea
+ https://github.com/jmetertea
+
+
+ geoffschoeman
+ https://github.com/geoffschoeman
+
+
+ bruceeddy
+ https://github.com/bruceeddy
+
+
+ ashleyfrieze
+ https://github.com/ashleyfrieze
+
+
+ Nirvanall
+ https://github.com/Nirvanall
+
+
+ LiamClark
+ https://github.com/LiamClark
+
+
+
diff --git a/mockito-matcher.patch b/mockito-matcher.patch
deleted file mode 100644
index 72cc1cb..0000000
--- a/mockito-matcher.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 02df4868e1614b9fd224e40c1556b78eeb01cd3d Mon Sep 17 00:00:00 2001
-From: Michael Simacek
-Date: Wed, 4 Dec 2013 16:52:24 +0100
-Subject: [PATCH] mockito matcher
-
-Signed-off-by: Michael Simacek
----
- src/org/mockito/internal/matchers/LocalizedMatcher.java | 8 +++++++-
- 1 file changed, 7 insertions(+), 1 deletion(-)
-
-diff --git a/src/org/mockito/internal/matchers/LocalizedMatcher.java b/src/org/mockito/internal/matchers/LocalizedMatcher.java
-index d6dda04..9dffe06 100644
---- a/src/org/mockito/internal/matchers/LocalizedMatcher.java
-+++ b/src/org/mockito/internal/matchers/LocalizedMatcher.java
-@@ -22,6 +22,12 @@ public class LocalizedMatcher implements Matcher, ContainsExtraTypeInformation,
- this.location = new LocationImpl();
- }
-
-+ /* This is a hack for Fedora. Bug has been filed here:
-+ * https://code.google.com/p/mockito/issues/detail?id=428 */
-+ public void describeMismatch(Object item, Description mismatchDescription) {
-+ mismatchDescription.appendText("was ").appendValue(item);
-+ }
-+
- public void _dont_implement_Matcher___instead_extend_BaseMatcher_() {
- // yeah right
- }
-@@ -37,7 +43,7 @@ public class LocalizedMatcher implements Matcher, ContainsExtraTypeInformation,
- public Location getLocation() {
- return location;
- }
--
-+
- @Override
- public String toString() {
- return "Localized: " + this.actualMatcher;
---
-1.8.3.1
-
diff --git a/mockito.spec b/mockito.spec
index 13485c0..8eb039b 100644
--- a/mockito.spec
+++ b/mockito.spec
@@ -1,72 +1,61 @@
-Name: mockito
-Version: 1.10.19
-Release: 18
-Summary: A Java mocking framework
-License: MIT
-URL: http://mockito.org
-Source0: https://github.com/mockito/mockito/archive/v1.10.19.tar.gz
-# fix bnd config to resolve build error
-Patch0001: fix-bnd-config.patch
-# fix ant script to resolve build error
-Patch0002: fixup-ant-script.patch
-# fix build error
-Patch0003: mockito-matcher.patch
-BuildArch: noarch
-BuildRequires: javapackages-local java-devel ant objenesis cglib
-BuildRequires: junit hamcrest aqute-bnd dos2unix
-Requires: objenesis cglib junit hamcrest
-
+Name: mockito
+Version: 2.23.9
+Release: 1
+Summary: Tasty mocking framework for unit tests in Java
+License: MIT
+URL: https://site.mockito.org/
+BuildArch: noarch
+Source0: %{name}-%{version}.tar.xz
+Source1: make-%{name}-sourcetarball.sh
+Source2: mockito-core.pom
+Patch0: use-unbundled-asm.patch
+BuildRequires: maven-local mvn(junit:junit) mvn(net.bytebuddy:byte-buddy)
+BuildRequires: mvn(net.bytebuddy:byte-buddy-agent) mvn(org.apache.felix:maven-bundle-plugin)
+BuildRequires: mvn(org.assertj:assertj-core) mvn(org.codehaus.mojo:exec-maven-plugin)
+BuildRequires: mvn(org.hamcrest:hamcrest-core) mvn(org.objenesis:objenesis)
+BuildRequires: mvn(org.ow2.asm:asm)
%description
Mockito is a mocking framework that tastes really good. It lets you write
beautiful tests with clean & simple API. Mockito doesn't give you hangover
because the tests are very readable and they produce clean verification
errors.
-%package help
-Summary: This package contains help documents
-Provides: mockito-javadoc = %{version}-%{release}
-Obsoletes: mockito-javadoc < %{version}-%{release}
-
-%description help
-Files for help with mockito
+%package javadoc
+Summary: Javadocs for %{name}
+%description javadoc
+This package contains the API documentation for %{name}.
%prep
%setup -q
-rm -rf `find -name *.jar` build.gradle cglib-and-asm doc gradle gradlew gradlew.bat javadoc
-dos2unix `find -name *.java`
-%patch0001 -p1
-%patch0002 -p1
-%patch0003 -p1
-%pom_add_dep net.sf.cglib:cglib:3.1 maven/mockito-core.pom
-find . -name "*.java" -exec sed -i "s|org\.mockito\.cglib|net\.sf\.cglib|g" {} +
-install -d lib/compile
-%pom_xpath_remove 'target[@name="javadoc"]/copy' build.xml
+%patch0
+sed -e 's/@VERSION@/%{version}/' %{SOURCE2} > pom.xml
+cat > osgi.bnd < - 2.23.9-1
+- upgrade the version to 2.23.9
+
* Thu Apr 23 2020 wutao 1.10.19-19
* delete useless patches
diff --git a/mockito.yaml b/mockito.yaml
new file mode 100644
index 0000000..316bd4e
--- /dev/null
+++ b/mockito.yaml
@@ -0,0 +1,5 @@
+git_url: https://github.com/mockito/mockito
+version_control: github
+src_repo: mockito/mockito
+tag_prefix: "^v"
+seperator: "."
diff --git a/use-unbundled-asm.patch b/use-unbundled-asm.patch
new file mode 100644
index 0000000..01d71f0
--- /dev/null
+++ b/use-unbundled-asm.patch
@@ -0,0 +1,70 @@
+--- src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java.orig 2018-12-04 23:47:19.396895633 +0000
++++ src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java 2018-12-04 23:48:19.129703720 +0000
+@@ -18,9 +18,9 @@
+ import net.bytebuddy.dynamic.scaffold.MethodGraph;
+ import net.bytebuddy.dynamic.scaffold.TypeValidation;
+ import net.bytebuddy.implementation.Implementation;
+-import net.bytebuddy.jar.asm.ClassVisitor;
+-import net.bytebuddy.jar.asm.MethodVisitor;
+-import net.bytebuddy.jar.asm.Opcodes;
++import org.objectweb.asm.ClassVisitor;
++import org.objectweb.asm.MethodVisitor;
++import org.objectweb.asm.Opcodes;
+ import net.bytebuddy.matcher.ElementMatchers;
+ import net.bytebuddy.pool.TypePool;
+ import net.bytebuddy.utility.OpenedClassReader;
+--- ./src/test/java/org/mockitointegration/NoJUnitDependenciesTest.java.orig 2018-12-04 23:49:03.170562228 +0000
++++ ./src/test/java/org/mockitointegration/NoJUnitDependenciesTest.java 2018-12-04 23:49:46.061424433 +0000
+@@ -12,6 +12,7 @@
+ import org.mockito.Mockito;
+ import org.mockito.internal.configuration.plugins.Plugins;
+ import org.mockitoutil.ClassLoaders;
++import org.objectweb.asm.ClassVisitor;
+ import org.objenesis.Objenesis;
+
+ import java.util.Set;
+@@ -30,6 +31,7 @@
+ Matcher.class,
+ ByteBuddy.class,
+ ByteBuddyAgent.class,
++ ClassVisitor.class,
+ Objenesis.class
+ )
+ .withCodeSourceUrlOf(coverageTool())
+--- src/test/java/org/mockito/internal/creation/bytebuddy/AbstractByteBuddyMockMakerTest.java.orig 2018-12-05 00:18:50.707528013 +0000
++++ src/test/java/org/mockito/internal/creation/bytebuddy/AbstractByteBuddyMockMakerTest.java 2018-12-05 00:19:49.520329138 +0000
+@@ -19,6 +19,7 @@
+ import org.mockito.stubbing.Answer;
+ import org.mockitoutil.ClassLoaders;
+ import org.mockitoutil.SimpleSerializationUtil;
++import org.objectweb.asm.ClassVisitor;
+ import org.objenesis.ObjenesisStd;
+
+ import java.io.Serializable;
+@@ -138,7 +139,7 @@
+ public void instantiate_fine_when_objenesis_on_the_classpath() throws Exception {
+ // given
+ ClassLoader classpath_with_objenesis = ClassLoaders.excludingClassLoader()
+- .withCodeSourceUrlOf(Mockito.class, ByteBuddy.class, ObjenesisStd.class)
++ .withCodeSourceUrlOf(Mockito.class, ByteBuddy.class, ObjenesisStd.class, ClassVisitor.class)
+ .withCodeSourceUrlOf(coverageTool())
+ .build();
+
+--- src/test/java/org/mockito/internal/junit/JUnitRuleTest.java.orig 2018-12-05 00:26:24.279002285 +0000
++++ src/test/java/org/mockito/internal/junit/JUnitRuleTest.java 2018-12-05 00:27:47.327723119 +0000
+@@ -4,6 +4,7 @@
+ */
+ package org.mockito.internal.junit;
+
++import org.junit.Ignore;
+ import org.junit.Rule;
+ import org.junit.Test;
+ import org.mockito.Mock;
+@@ -41,6 +42,7 @@
+
+ @SuppressWarnings({"CheckReturnValue", "MockitoUsage"})
+ @Test
++ @Ignore
+ public void does_not_check_invalid_mockito_usage_on_failure() throws Throwable {
+ //This intended behavior is questionable
+ //However, it was like that since the beginning of JUnit rule support
diff --git a/v1.10.19.tar.gz b/v1.10.19.tar.gz
deleted file mode 100644
index 55eee0f..0000000
Binary files a/v1.10.19.tar.gz and /dev/null differ