Commit c149f1ac38a2eca52b924b3731babc7bf7cddc92

Authored by Igor Kulikov
1 parent dae0eb52

Black box tests dependencies

... ... @@ -92,6 +92,22 @@
92 92 <groupId>org.thingsboard</groupId>
93 93 <artifactId>rest-client</artifactId>
94 94 </dependency>
  95 + <dependency>
  96 + <groupId>org.thingsboard.msa</groupId>
  97 + <artifactId>js-executor</artifactId>
  98 + </dependency>
  99 + <dependency>
  100 + <groupId>org.thingsboard.msa</groupId>
  101 + <artifactId>web-ui</artifactId>
  102 + </dependency>
  103 + <dependency>
  104 + <groupId>org.thingsboard.msa</groupId>
  105 + <artifactId>tb-node</artifactId>
  106 + </dependency>
  107 + <dependency>
  108 + <groupId>org.thingsboard.msa</groupId>
  109 + <artifactId>transport</artifactId>
  110 + </dependency>
95 111 </dependencies>
96 112
97 113 <build>
... ...
... ... @@ -966,6 +966,30 @@
966 966 <scope>test</scope>
967 967 </dependency>
968 968 <dependency>
  969 + <groupId>org.thingsboard.msa</groupId>
  970 + <artifactId>js-executor</artifactId>
  971 + <version>${project.version}</version>
  972 + <scope>test</scope>
  973 + </dependency>
  974 + <dependency>
  975 + <groupId>org.thingsboard.msa</groupId>
  976 + <artifactId>web-ui</artifactId>
  977 + <version>${project.version}</version>
  978 + <scope>test</scope>
  979 + </dependency>
  980 + <dependency>
  981 + <groupId>org.thingsboard.msa</groupId>
  982 + <artifactId>tb-node</artifactId>
  983 + <version>${project.version}</version>
  984 + <scope>test</scope>
  985 + </dependency>
  986 + <dependency>
  987 + <groupId>org.thingsboard.msa</groupId>
  988 + <artifactId>transport</artifactId>
  989 + <version>${project.version}</version>
  990 + <scope>test</scope>
  991 + </dependency>
  992 + <dependency>
969 993 <groupId>org.thingsboard</groupId>
970 994 <artifactId>dao</artifactId>
971 995 <version>${project.version}</version>
... ...