chromedriver-bin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ru.sbtqa</groupId> <artifactId>chromedriver-bin</artifactId> <version>116.0.5845.96</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>ru.sbtqa</groupId> <artifactId>chromedriver-bin</artifactId> <version>116.0.5845.96</version> <name>chromedriver-bin</name> <description>Package chromedriver as maven artifact</description> <url>http://github.com/sbtqa/chromedriver-bin</url> <licenses> <license> <name>Chromedriver license</name> <url> https://chromium.googlesource.com/chromium/src/+/afb2b4d227b36874c5a165565afbdc6d36daddd5/chrome/test/chromedriver/third_party/googlecode/LICENSE </url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Pavel Alennikov</name> <email>palennikov@gmail.com</email> <organization>sbtqa</organization> <organizationUrl>http://github.com/sbtqa</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/sbtqa/chromedriver-bin</connection> <developerConnection>scm:git:ssh://github.com:sbtqa/chromedriver-bin.git</developerConnection> <url>https://github.com/sbtqa/chromedriver-bin/tree/master</url> </scm> <properties> <maven.compilier.plugin.version>3.3</maven.compilier.plugin.version> <nexus.staging.maven.plugin.version>1.6.3</nexus.staging.maven.plugin.version> <maven.source.plugin.version>2.2.1</maven.source.plugin.version> <maven.javadoc.plugin.version>2.9.1</maven.javadoc.plugin.version> <maven.gpg.plugin.version>1.5</maven.gpg.plugin.version> <chrome.baseurl>https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing</chrome.baseurl> </properties> <build> <plugins> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>1.4.0</version> <executions> <execution> <id>download-win32</id> <phase>pre-integration-test</phase> <goals> <goal>wget</goal> </goals> <configuration> <url> ${chrome.baseurl}/${project.version}/win32/chromedriver-win32.zip </url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/win32</outputDirectory> </configuration> </execution> <execution> <id>download-win64</id> <phase>pre-integration-test</phase> <goals> <goal>wget</goal> </goals> <configuration> <url> ${chrome.baseurl}/${project.version}/win64/chromedriver-win64.zip </url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/win64</outputDirectory> </configuration> </execution> <execution> <id>download-linux64</id> <phase>pre-integration-test</phase> <goals> <goal>wget</goal> </goals> <configuration> <url> ${chrome.baseurl}/${project.version}/linux64/chromedriver-linux64.zip </url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/linux64</outputDirectory> </configuration> </execution> <execution> <id>download-mac-x64</id> <phase>pre-integration-test</phase> <goals> <goal>wget</goal> </goals> <configuration> <url> ${chrome.baseurl}/${project.version}/mac-x64/chromedriver-mac-x64.zip </url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/mac-x64</outputDirectory> </configuration> </execution> <execution> <id>download-mac-arm64</id> <phase>pre-integration-test</phase> <goals> <goal>wget</goal> </goals> <configuration> <url> ${chrome.baseurl}/${project.version}/mac-arm64/chromedriver-mac-arm64.zip </url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/mac-arm64</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.10</version> <executions> <execution> <id>attach-artifacts</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${project.build.directory}/win32/chromedriver-win32/chromedriver.exe</file> <type>bin</type> <classifier>win32</classifier> </artifact> <artifact> <file>${project.build.directory}/win64/chromedriver-win64/chromedriver.exe</file> <type>bin</type> <classifier>win64</classifier> </artifact> <artifact> <file>${project.build.directory}/linux64/chromedriver-linux64/chromedriver</file> <type>bin</type> <classifier>linux64</classifier> </artifact> <artifact> <file>${project.build.directory}/mac-x64/chromedriver-mac-x64/chromedriver</file> <type>bin</type> <classifier>mac-x64</classifier> </artifact> <artifact> <file>${project.build.directory}/mac-arm64/chromedriver-mac-arm64/chromedriver</file> <type>bin</type> <classifier>mac-arm64</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <property> <name>release</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compilier.plugin.version}</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.maven.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>