You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2019/05/01 16:20:52 UTC

[pulsar] branch master updated: Update and cleanup test dependencies (#4148)

This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new b9e3b93  Update and cleanup test dependencies (#4148)
b9e3b93 is described below

commit b9e3b935f8e1a6a49520e76719752f94b98f19ac
Author: Ali Ahmed <al...@gmail.com>
AuthorDate: Wed May 1 09:20:45 2019 -0700

    Update and cleanup test dependencies (#4148)
    
    Update testng ver
    Update testcontainers ver
    Remove arquillian references
    Remove jmockit references
---
 dev/README.md |  2 +-
 pom.xml       | 12 ++----------
 2 files changed, 3 insertions(+), 11 deletions(-)

diff --git a/dev/README.md b/dev/README.md
index 856ae6a..053d2bb 100644
--- a/dev/README.md
+++ b/dev/README.md
@@ -23,7 +23,7 @@
 
 ### Running Integration Tests on macOS
 
-Currently all the integration tests are docker based and written using arquillian framework. 
+Currently all the integration tests are docker based and written using testcontainers framework.
 Due to the networking issues, the integration tests can only be run on linux environment.
 For people who is using macOS as their development environment, you can use [Vagrant](https://www.vagrantup.com)
 to launch a linux virtual machine and run the integration tests there.
diff --git a/pom.xml b/pom.xml
index ac433e9..e0f35e7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -194,11 +194,9 @@ flexible messaging model and an intuitive client API.</description>
     <hbase.version>1.4.9</hbase.version>
 
     <!-- test dependencies -->
-    <arquillian-cube.version>1.15.1</arquillian-cube.version>
-    <arquillian-junit.version>1.1.14.Final</arquillian-junit.version>
     <cassandra.version>3.6.0</cassandra.version>
     <disruptor.version>3.4.0</disruptor.version>
-    <testcontainers.version>1.10.5</testcontainers.version>
+    <testcontainers.version>1.11.2</testcontainers.version>
     <kerby.version>1.1.1</kerby.version>
 
     <!-- Plugin dependencies -->
@@ -234,7 +232,7 @@ flexible messaging model and an intuitive client API.</description>
       <dependency>
         <groupId>org.testng</groupId>
         <artifactId>testng</artifactId>
-        <version>6.13.1</version>
+        <version>6.14.3</version>
       </dependency>
 
       <dependency>
@@ -256,12 +254,6 @@ flexible messaging model and an intuitive client API.</description>
       </dependency>
 
       <dependency>
-        <groupId>com.googlecode.jmockit</groupId>
-        <artifactId>jmockit</artifactId>
-        <version>1.7</version>
-      </dependency>
-
-      <dependency>
         <groupId>org.apache.zookeeper</groupId>
         <artifactId>zookeeper</artifactId>
         <version>${zookeeper.version}</version>