Commit 9c9aee04c7c1c10bdd48eacabbada91de6b4bf86

Authored by Igor Kulikov
2 parents eb6d3f23 3f3fb177

Merge branch 'master' of github.com:thingsboard/thingsboard

... ... @@ -101,13 +101,18 @@
101 101 <scope>provided</scope>
102 102 </dependency>
103 103 <dependency>
104   - <groupId>junit</groupId>
105   - <artifactId>junit</artifactId>
  104 + <groupId>org.springframework.boot</groupId>
  105 + <artifactId>spring-boot-starter-test</artifactId>
  106 + <scope>test</scope>
  107 + </dependency>
  108 + <dependency>
  109 + <groupId>org.junit.vintage</groupId>
  110 + <artifactId>junit-vintage-engine</artifactId>
106 111 <scope>test</scope>
107 112 </dependency>
108 113 <dependency>
109   - <groupId>org.mockito</groupId>
110   - <artifactId>mockito-core</artifactId>
  114 + <groupId>org.awaitility</groupId>
  115 + <artifactId>awaitility</artifactId>
111 116 <scope>test</scope>
112 117 </dependency>
113 118 </dependencies>
... ...
... ... @@ -117,7 +117,6 @@
117 117 <javax.validation-api.version>2.0.1.Final</javax.validation-api.version>
118 118 <antisamy.version>1.6.2</antisamy.version>
119 119 <snmp4j.version>2.8.5</snmp4j.version>
120   - <httpclient.version>4.5.13</httpclient.version>
121 120 <!-- TEST SCOPE -->
122 121 <awaitility.version>4.1.0</awaitility.version>
123 122 <cassandra-unit.version>4.3.1.0</cassandra-unit.version>
... ... @@ -1848,11 +1847,6 @@
1848 1847 <version>${zeroturnaround.version}</version>
1849 1848 <scope>test</scope>
1850 1849 </dependency>
1851   - <dependency>
1852   - <groupId>org.apache.httpcomponents</groupId>
1853   - <artifactId>httpclient</artifactId>
1854   - <version>${httpclient.version}</version>
1855   - </dependency>
1856 1850 </dependencies>
1857 1851 </dependencyManagement>
1858 1852
... ...