firefoxdriver-bin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ru.sbtqa</groupId> <artifactId>firefoxdriver-bin</artifactId> <version>0.29.1</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>firefoxdriver-bin</artifactId> <version>0.29.1</version> <name>firefoxdriver-bin</name> <description>Package firefoxdriver as maven artifact</description> <url>http://github.com/sbtqa/firefoxdriver-bin</url> <licenses> <license> <name>FireFoxDriver license</name> <url> https://www.mozilla.org/en-US/MPL/2.0/ </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/firefoxdriver-bin</connection> <developerConnection>scm:git:ssh://github.com:sbtqa/firefoxdriver-bin.git</developerConnection> <url>https://github.com/sbtqa/firefoxdriver-bin/tree/master</url> </scm> <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> https://github.com/mozilla/geckodriver/releases/download/v${project.version}/geckodriver-v${project.version}-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> https://github.com/mozilla/geckodriver/releases/download/v${project.version}/geckodriver-v${project.version}-win64.zip </url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/win64</outputDirectory> </configuration> </execution> <execution> <id>download-linux32</id> <phase>pre-integration-test</phase> <goals> <goal>wget</goal> </goals> <configuration> <url> https://github.com/mozilla/geckodriver/releases/download/v${project.version}/geckodriver-v${project.version}-linux32.tar.gz </url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/linux32</outputDirectory> </configuration> </execution> <execution> <id>download-linux64</id> <phase>pre-integration-test</phase> <goals> <goal>wget</goal> </goals> <configuration> <url> https://github.com/mozilla/geckodriver/releases/download/v${project.version}/geckodriver-v${project.version}-linux64.tar.gz </url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/linux64</outputDirectory> </configuration> </execution> <execution> <id>download-mac</id> <phase>pre-integration-test</phase> <goals> <goal>wget</goal> </goals> <configuration> <url> https://github.com/mozilla/geckodriver/releases/download/v${project.version}/geckodriver-v${project.version}-macos.tar.gz </url> <unpack>true</unpack> <outputDirectory>${project.build.directory}/mac</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>install</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${project.build.directory}/win32/geckodriver.exe</file> <type>bin</type> <classifier>win32</classifier> </artifact> <artifact> <file>${project.build.directory}/win64/geckodriver.exe</file> <type>bin</type> <classifier>win64</classifier> </artifact> <artifact> <file>${project.build.directory}/linux32/geckodriver</file> <type>bin</type> <classifier>linux32</classifier> </artifact> <artifact> <file>${project.build.directory}/linux64/geckodriver</file> <type>bin</type> <classifier>linux64</classifier> </artifact> <artifact> <file>${project.build.directory}/mac/geckodriver</file> <type>bin</type> <classifier>mac</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</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>2.2.1</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>2.9.1</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>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>install</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>