thingsboard-memoizeit

Changes

pom.xml 26(+0 -26)

tools/pom.xml 63(+0 -63)

tools/src/main/java/org/thingsboard/client/tools/MqttStressTestClient.java 99(+0 -99)

tools/src/main/java/org/thingsboard/client/tools/MqttStressTestTool.java 135(+0 -135)

tools/src/main/java/org/thingsboard/client/tools/RestClient.java 77(+0 -77)

tools/src/main/java/org/thingsboard/client/tools/ResultAccumulator.java 88(+0 -88)

tools/src/main/java/org/thingsboard/client/tools/TestParams.java 74(+0 -74)

tools/src/main/resources/logback.xml 35(+0 -35)

tools/src/main/resources/test.properties 5(+0 -5)

tools/src/test/scala/org/thingsboard/client/tools/MqttSimulation.scala 55(+0 -55)

Details

pom.xml 26(+0 -26)

diff --git a/pom.xml b/pom.xml
index e9900f3..442caef 100755
--- a/pom.xml
+++ b/pom.xml
@@ -69,10 +69,6 @@
         <surfire.version>2.19.1</surfire.version>
         <jar-plugin.version>3.0.2</jar-plugin.version>
         <springfox-swagger.version>2.6.1</springfox-swagger.version>
-        <gatling.version>2.2.3</gatling.version>
-        <gatling-mqtt.version>1.0.0</gatling-mqtt.version>
-        <gatling-plugin.version>2.2.1</gatling-plugin.version>
-        <scala-maven-plugin.version>3.2.2</scala-maven-plugin.version>
     </properties>
 
     <modules>
@@ -285,16 +281,6 @@
                         </execution>
                     </executions>
                 </plugin>
-                <plugin>
-                    <groupId>net.alchim31.maven</groupId>
-                    <artifactId>scala-maven-plugin</artifactId>
-                    <version>${scala-maven-plugin.version}</version>
-                </plugin>
-                <plugin>
-                    <groupId>io.gatling</groupId>
-                    <artifactId>gatling-maven-plugin</artifactId>
-                    <version>${gatling-plugin.version}</version>
-                </plugin>
             </plugins>
         </pluginManagement>
         <plugins>
@@ -703,18 +689,6 @@
                 <artifactId>springfox-swagger2</artifactId>
                 <version>${springfox-swagger.version}</version>
             </dependency>
-            <dependency>
-                <groupId>io.gatling.highcharts</groupId>
-                <artifactId>gatling-charts-highcharts</artifactId>
-                <version>${gatling.version}</version>
-                <scope>test</scope>
-            </dependency>
-            <dependency>
-                <groupId>com.github.mnogu</groupId>
-                <artifactId>gatling-mqtt</artifactId>
-                <version>${gatling-mqtt.version}</version>
-                <scope>test</scope>
-            </dependency>
         </dependencies>
     </dependencyManagement>
 

tools/pom.xml 63(+0 -63)

diff --git a/tools/pom.xml b/tools/pom.xml
index 46549fc..2c978f0 100644
--- a/tools/pom.xml
+++ b/tools/pom.xml
@@ -35,61 +35,6 @@
         <main.dir>${basedir}/..</main.dir>
     </properties>
 
-    <dependencies>
-        <dependency>
-            <groupId>org.thingsboard.common</groupId>
-            <artifactId>data</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-web</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.eclipse.paho</groupId>
-            <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>log4j-over-slf4j</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-core</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-classic</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-test</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.mockito</groupId>
-            <artifactId>mockito-all</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>io.gatling.highcharts</groupId>
-            <artifactId>gatling-charts-highcharts</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>com.github.mnogu</groupId>
-            <artifactId>gatling-mqtt</artifactId>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-
     <build>
         <plugins>
             <plugin>
@@ -124,14 +69,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <groupId>net.alchim31.maven</groupId>
-                <artifactId>scala-maven-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <groupId>io.gatling</groupId>
-                <artifactId>gatling-maven-plugin</artifactId>
-            </plugin>
         </plugins>
     </build>
 </project>