Hi Ian,
On Thu, Apr 7, 2016 at 6:30 PM, Ian Boston <[email protected]> wrote:
> ...the crankstartSetup.before() is not called, hence the
> crankstart never starts...
Looks like a dependency is pulling an old version of JUnit, this patch
fixes it for me:
diff --git a/contrib/extensions/jobs/it/pom.xml
b/contrib/extensions/jobs/it/pom.xml
index 2a1dbe1..43f6cc8 100644
--- a/contrib/extensions/jobs/it/pom.xml
+++ b/contrib/extensions/jobs/it/pom.xml
@@ -82,6 +82,12 @@
<artifactId>org.apache.sling.commons.testing</artifactId>
<version>2.0.16</version>
<scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.jmock</groupId>
+ <artifactId>jmock-junit4</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
-Bertrand