Skip to content

Commit 88ccf10

Browse files
[java] fix line numbers in install_library.md (#1856)
This: ```xml <dependencies> <dependency> <groupId>...</groupId> <artifactId>...</artifactId> <version>...</version> ``` Becomes: ```xml <dependency> <groupId>...</groupId> <artifactId>...</artifactId> <version>...</version> </dependency> ``` Affected page: https://www.selenium.dev/documentation/webdriver/getting_started/install_library/
1 parent c5657ae commit 88ccf10

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

website_and_docs/content/documentation/webdriver/getting_started/install_library.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Installation of Selenium libraries for Java is accomplished using a build tool.
2727
### Maven
2828
Specify the dependencies in the project's `pom.xml` file:
2929

30-
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}
30+
{{< gh-codeblock path="examples/java/pom.xml#L30-L34" >}}
3131

3232
### Gradle
3333
Specify the dependency in the project `build.gradle` file as `testImplementation`:

website_and_docs/content/documentation/webdriver/getting_started/install_library.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Installation of Selenium libraries for Java is accomplished using a build tool.
2525
### Maven
2626
Specify the dependencies in the project's `pom.xml` file:
2727

28-
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}
28+
{{< gh-codeblock path="examples/java/pom.xml#L30-L34" >}}
2929

3030
### Gradle
3131
Specify the dependency in the project `build.gradle` file as `testImplementation`:

website_and_docs/content/documentation/webdriver/getting_started/install_library.pt-br.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A instalação da biblioteca Selenium para Java é feita a partir de uma build t
2727
### Maven
2828
Especifique a dependência no `pom.xml` do seu projeto.
2929

30-
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}
30+
{{< gh-codeblock path="examples/java/pom.xml#L30-L34" >}}
3131

3232
### Gradle
3333
Especifique a dependência no `build.gradle` do seu projeto como `testImplementation`:

website_and_docs/content/documentation/webdriver/getting_started/install_library.zh-cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ aliases: [
2525
### Maven
2626
具体的依赖位于项目中的 `pom.xml` 文件:
2727

28-
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}
28+
{{< gh-codeblock path="examples/java/pom.xml#L30-L34" >}}
2929

3030
### Gradle
3131
具体的依赖位于项目中的 `build.gradle` 文件中的 `testImplementation`:

0 commit comments

Comments
 (0)