The following code is for the sample Maven pom.xml file to download all the required JAR files with several additions for this book (excluding Java). It is located at https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java/3.7.1:
<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> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>3.7.1</version> <name>selenium-java</name> <description> Selenium automates browsers. </description> <url>http://www.seleniumhq.org/</url> <licenses> <license ...