Skip to content

Commit

Permalink
update versions to 4.14
Browse files Browse the repository at this point in the history
[deploy site]
  • Loading branch information
titusfortner committed Oct 10, 2023
1 parent 1fac04d commit de2fc75
Show file tree
Hide file tree
Showing 13 changed files with 32 additions and 26 deletions.
4 changes: 2 additions & 2 deletions examples/dotnet/SeleniumDocs/SeleniumDocs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.23.1" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="Selenium.Support" Version="4.13.1" />
<PackageReference Include="Selenium.WebDriver" Version="4.13.1" />
<PackageReference Include="Selenium.Support" Version="4.14.0" />
<PackageReference Include="Selenium.WebDriver" Version="4.14.0" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions examples/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ repositories {
}

dependencies {
testImplementation 'org.seleniumhq.selenium:selenium-java:4.13.0'
testImplementation 'org.seleniumhq.selenium:selenium-http-jdk-client:4.13.0'
testImplementation 'org.seleniumhq.selenium:selenium-java:4.14.0'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
}

Expand Down
29 changes: 18 additions & 11 deletions examples/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<version>1.0.0</version>

<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<surefire.parallel>1</surefire.parallel>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand All @@ -28,19 +29,19 @@
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.13.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-http-jdk-client</artifactId>
<version>4.13.0</version>
<version>4.14.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.titusfortner</groupId>
<artifactId>selenium-logger</artifactId>
<version>2.2.1</version>
</dependency>
</dependencies>

<build>
Expand All @@ -50,9 +51,15 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<systemPropertyVariables>
<webdriver.http.factory>jdk-http-client</webdriver.http.factory>
</systemPropertyVariables>
<properties>
<configurationParameters>
junit.jupiter.execution.parallel.enabled = true
junit.jupiter.execution.parallel.mode.default = concurrent
junit.jupiter.execution.parallel.config.strategy = fixed
junit.jupiter.execution.parallel.config.fixed.parallelism = ${surefire.parallel}
junit.jupiter.execution.parallel.config.fixed.max-pool-size = ${surefire.parallel}
</configurationParameters>
</properties>
</configuration>
</plugin>
</plugins>
Expand Down
2 changes: 1 addition & 1 deletion examples/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"license": "Apache-2.0",
"dependencies": {
"assert": "^2.0.0",
"selenium-webdriver": "^4.13.0"
"selenium-webdriver": "^4.14.0"
},
"devDependencies": {
"mocha": "^10.2.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>

<java.version>1.8</java.version>
<selenium.version>4.13.0</selenium.version>
<selenium.version>4.14.0</selenium.version>

<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
Expand Down
2 changes: 1 addition & 1 deletion examples/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
selenium==4.13.0
selenium==4.14.0
pytest
flake8
2 changes: 1 addition & 1 deletion examples/ruby/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ gem 'rspec', '~> 3.0'
gem 'rubocop', '~> 1.35'
gem 'rubocop-rspec', '~> 2.12'
gem 'selenium-devtools', '~> 0.116'
gem 'selenium-webdriver', '= 4.13.1'
gem 'selenium-webdriver', '= 4.14.0'
4 changes: 2 additions & 2 deletions examples/ruby/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ GEM
rubyzip (2.3.2)
selenium-devtools (0.117.0)
selenium-webdriver (~> 4.2)
selenium-webdriver (4.13.1)
selenium-webdriver (4.14.0)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
Expand All @@ -74,7 +74,7 @@ DEPENDENCIES
rubocop (~> 1.35)
rubocop-rspec (~> 2.12)
selenium-devtools (~> 0.116)
selenium-webdriver (= 4.13.1)
selenium-webdriver (= 4.14.0)

BUNDLED WITH
2.3.11
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Installation of Selenium libraries for Java is accomplished using a build tool.
### Maven
Specify the dependencies in the project's `pom.xml` file:

{{< gh-codeblock path="examples/java/pom.xml#L28-L38" >}}
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}

### Gradle
Specify the dependency in the project `build.gradle` file as `testImplementation`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Installation of Selenium libraries for Java is accomplished using a build tool.
### Maven
Specify the dependencies in the project's `pom.xml` file:

{{< gh-codeblock path="examples/java/pom.xml#L28-L38" >}}
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}

### Gradle
Specify the dependency in the project `build.gradle` file as `testImplementation`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ A instalação da biblioteca Selenium para Java é feita a partir de uma build t
### Maven
Especifique a dependência no `pom.xml` do seu projeto.

{{< gh-codeblock path="examples/java/pom.xml#L28-L38" >}}
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}

### Gradle
Especifique a dependência no `build.gradle` do seu projeto como `testImplementation`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ aliases: [
### Maven
具体的依赖位于项目中的 `pom.xml` 文件:

{{< gh-codeblock path="examples/java/pom.xml#L28-L38" >}}
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}

### Gradle
具体的依赖位于项目中的 `build.gradle` 文件中的 `testImplementation`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ <h4 class="card-title font-weight-bold">Java</h4>
</p>
<p class="card-text">
To use the Java SNAPSHOT versions, you will need to add the
<a href="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/trunk/examples/java/pom.xml#L21-L29">
<a href="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/trunk/examples/java/pom.xml#L18-L26">
snapshot repository
</a>.

Expand Down

0 comments on commit de2fc75

Please sign in to comment.