mirror of https://github.com/OpenVidu/openvidu.git
Update pom.xml dependencies
parent
dadcfc6f77
commit
9522e1ff63
|
@ -65,12 +65,6 @@
|
|||
<version>${version.junit}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hamcrest</groupId>
|
||||
<artifactId>hamcrest</artifactId>
|
||||
<version>${version.hamcrest}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
|
|
|
@ -18,8 +18,6 @@ package io.openvidu.client.test;
|
|||
import static io.openvidu.client.internal.ProtocolElements.JOINROOM_METHOD;
|
||||
import static io.openvidu.client.internal.ProtocolElements.JOINROOM_ROOM_PARAM;
|
||||
import static io.openvidu.client.internal.ProtocolElements.JOINROOM_USER_PARAM;
|
||||
import static org.hamcrest.CoreMatchers.is;
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.mockito.Mockito.mock;
|
||||
import static org.mockito.Mockito.when;
|
||||
|
||||
|
@ -28,6 +26,7 @@ import java.util.HashMap;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.BeforeAll;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.kurento.jsonrpc.client.JsonRpcClient;
|
||||
|
@ -70,7 +69,6 @@ public class OpenViduClientTest {
|
|||
Map<String, List<String>> joinResult = new HashMap<String, List<String>>();
|
||||
|
||||
when(jsonRpcClient.sendRequest(JOINROOM_METHOD, params)).thenReturn(result);
|
||||
assertThat(client.joinRoom("room", "user"), is(joinResult));
|
||||
|
||||
Assertions.assertEquals(client.joinRoom("room", "user"), joinResult);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
|
@ -279,16 +281,6 @@
|
|||
<artifactId>janino</artifactId>
|
||||
<version>${version.janino}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
<version>${version.commonslang}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
<version>${version.gson}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.openvidu</groupId>
|
||||
<artifactId>openvidu-java-client</artifactId>
|
||||
|
@ -314,12 +306,6 @@
|
|||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hamcrest</groupId>
|
||||
<artifactId>hamcrest</artifactId>
|
||||
<version>${version.hamcrest}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.openvidu</groupId>
|
||||
<artifactId>openvidu-test-browsers</artifactId>
|
||||
|
|
|
@ -1125,8 +1125,8 @@ public class KurentoSessionManager extends SessionManager {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
/* Protected by Session.closingLock.readLock */
|
||||
@Override
|
||||
public Participant publishIpcam(Session session, MediaOptions mediaOptions,
|
||||
ConnectionProperties connectionProperties) throws Exception {
|
||||
final String sessionId = session.getSessionId();
|
||||
|
|
7
pom.xml
7
pom.xml
|
@ -43,22 +43,17 @@
|
|||
|
||||
<properties>
|
||||
<version.kurento>6.18.1-SNAPSHOT</version.kurento>
|
||||
<version.spring-boot>2.7.5</version.spring-boot>
|
||||
<version.spring-boot>2.7.6</version.spring-boot>
|
||||
<version.junit>5.9.1</version.junit>
|
||||
<version.junit.platform>1.9.1</version.junit.platform>
|
||||
<version.selenium>3.141.59</version.selenium>
|
||||
<version.mockito.core>4.9.0</version.mockito.core>
|
||||
<version.powermock>2.0.9</version.powermock>
|
||||
<version.hamcrest>2.2</version.hamcrest>
|
||||
<version.httpclient>4.5.13</version.httpclient>
|
||||
<version.janino>3.1.9</version.janino>
|
||||
<version.commonslang>3.12.0</version.commonslang>
|
||||
<version.dockerjava>3.2.13</version.dockerjava>
|
||||
<version.slf4j>1.7.36</version.slf4j>
|
||||
<version.gson>2.10</version.gson>
|
||||
<version.unirest>1.4.9</version.unirest>
|
||||
<version.jcodec>0.2.5</version.jcodec>
|
||||
<version.commons-text>1.10.0</version.commons-text>
|
||||
<version.testcontainers>1.16.2</version.testcontainers>
|
||||
<version.appium>7.6.0</version.appium>
|
||||
|
||||
|
|
Loading…
Reference in New Issue