mirror of https://github.com/OpenVidu/openvidu.git
openvidu-test-browsers: update dependencies
parent
4324ac7c05
commit
72e2873e21
|
|
@ -49,14 +49,14 @@
|
||||||
<openvidu.scm.url>https://github.com/OpenVidu/openvidu</openvidu.scm.url>
|
<openvidu.scm.url>https://github.com/OpenVidu/openvidu</openvidu.scm.url>
|
||||||
<openvidu.scm.connection>git@github.com:OpenVidu/openvidu.git</openvidu.scm.connection>
|
<openvidu.scm.connection>git@github.com:OpenVidu/openvidu.git</openvidu.scm.connection>
|
||||||
|
|
||||||
<version.spring-boot>3.4.1</version.spring-boot>
|
<version.spring-boot>4.0.0</version.spring-boot>
|
||||||
<version.openvidu.java.client>2.30.0</version.openvidu.java.client>
|
<version.openvidu.java.client>2.32.1</version.openvidu.java.client>
|
||||||
<version.slf4j>2.0.16</version.slf4j>
|
<version.slf4j>2.0.17</version.slf4j>
|
||||||
<version.selenium>4.27.0</version.selenium>
|
<version.selenium>4.39.0</version.selenium>
|
||||||
<version.gson>2.11.0</version.gson>
|
<version.gson>2.13.2</version.gson>
|
||||||
<version.jcodec>0.2.5</version.jcodec>
|
<version.jcodec>0.2.5</version.jcodec>
|
||||||
<version.junit>5.11.4</version.junit>
|
<version.junit>5.14.1</version.junit>
|
||||||
<version.appium>9.3.0</version.appium>
|
<version.appium>10.0.0</version.appium>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
@ -107,6 +107,20 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.14.1</version>
|
||||||
|
<configuration>
|
||||||
|
<source>${java.version}</source>
|
||||||
|
<target>${java.version}</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
<id>default</id>
|
<id>default</id>
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ public class OperaUser extends BrowserUser {
|
||||||
// this.driver = new OperaDriver(options);
|
// this.driver = new OperaDriver(options);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.driver.manage().timeouts().setScriptTimeout(timeOfWaitInSeconds, TimeUnit.SECONDS);
|
this.driver.manage().timeouts().scriptTimeout(java.time.Duration.ofSeconds(timeOfWaitInSeconds));
|
||||||
this.configureDriver(new org.openqa.selenium.Dimension(1920, 1080));
|
this.configureDriver(new org.openqa.selenium.Dimension(1920, 1080));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ public class CustomLayoutHandler implements WebMvcConfigurer {
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
|
SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
|
||||||
http.httpBasic().disable();
|
http.httpBasic(basic -> basic.disable());
|
||||||
return http.build();
|
return http.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -176,8 +176,8 @@ public class CustomWebhook {
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
|
SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
|
||||||
http.requiresChannel().requestMatchers("/webhook").requiresInsecure();
|
http.requiresChannel(channel -> channel.requestMatchers("/webhook").requiresInsecure());
|
||||||
http.csrf().disable().authorizeRequests().requestMatchers("/webhook").permitAll();
|
http.csrf(csrf -> csrf.disable()).authorizeHttpRequests(auth -> auth.requestMatchers("/webhook").permitAll());
|
||||||
return http.build();
|
return http.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue