toast-tk-selenium-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.toast-tk</groupId> <artifactId>toast-tk-selenium-plugin</artifactId> <version>0.1.6</version> </dependency>
<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>io.toast-tk</groupId> <artifactId>toast-tk-selenium-plugin</artifactId> <version>0.1.6</version> <name>Toast Toolkit - Selenium Plugin</name> <description> Toast TK Engine Selenium Plugin </description> <url>https://toast-tk.io/</url> <properties> <root-directory>${project.basedir}</root-directory> <toast.version>0.1.5-SNAPSHOT</toast.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version> <maven-resources-plugin.version>2.5</maven-resources-plugin.version> <maven-dependency-plugin.version>2.4</maven-dependency-plugin.version> <maven-jar-plugin.version>2.4</maven-jar-plugin.version> <maven-gpg-plugin.version>1.5</maven-gpg-plugin.version> <maven-release-plugin.version>2.4</maven-release-plugin.version> <maven-source-plugin.version>2.0.4</maven-source-plugin.version> <maven-javadoc-plugin.version>2.3</maven-javadoc-plugin.version> <maven-surefire-plugin.version>2.12.4</maven-surefire-plugin.version> <maven-eclipse-plugin.version>2.8</maven-eclipse-plugin.version> <build-helper-maven-plugin>1.7</build-helper-maven-plugin> <lifecycle-mapping-plugin.version>1.0.0</lifecycle-mapping-plugin.version> <guice.version>3.0</guice.version> <log4j.version>2.2</log4j.version> <commons.version>3.0</commons.version> <common-lang.version>2.3</common-lang.version> <common-io.version>2.4</common-io.version> <commons-beanutils.version>1.8.3</commons-beanutils.version> <guava.version>18.0</guava.version> <junit.version>4.11</junit.version> <jacoco-maven-plugin.version>0.7.4.201502262128</jacoco-maven-plugin.version> <jacoco.it.execution.data.file> ${project.build.directory}/coverage-reports/jacoco-it.exec </jacoco.it.execution.data.file> <jacoco.ut.execution.data.file> ${project.build.directory}/coverage-reports/jacoco-ut.exec </jacoco.ut.execution.data.file> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <selenium.version>2.53.0</selenium.version> </properties> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <issueManagement> <url>https://github.com/toast-tk/toast-tk-engine/issues</url> <system>GitHub Issues</system> </issueManagement> <scm> <url>https://github.com/toast-tk/toast-tk-selenium-plugin</url> <connection>scm:git:git://github.com/toast-tk/toast-tk-selenium-plugin.git</connection> <developerConnection>scm:git:git@github.com:toast-tk/toast-tk-selenium-plugin.git</developerConnection> </scm> <developers> <developer> <name>Sallah Kokaina</name> <email>sallah.kokaina@gmail.com</email> <organization>Toast TK</organization> <organizationUrl>http://toast-tk.io</organizationUrl> </developer> </developers> <build> <finalName>${project.artifactId}-${project.version} </finalName> <directory>${basedir}/target</directory> <sourceDirectory>${basedir}/src/main/java</sourceDirectory> <scriptSourceDirectory>${basedir}/src/main/scripts</scriptSourceDirectory> <testSourceDirectory>${basedir}/src/test/java</testSourceDirectory> <testOutputDirectory>${basedir}/target/test-classes</testOutputDirectory> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*</include> </includes> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> <includes> <include>**/*</include> </includes> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <encoding>${project.build.sourceEncoding}</encoding> <proc>none</proc> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${jacoco.ut.execution.data.file}</destFile> </configuration> </execution> <execution> <id>pre-integration-test</id> <phase>pre-integration-test</phase> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${jacoco.it.execution.data.file}</destFile> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> <configuration> <deployAtEnd>true</deployAtEnd> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.16</version> <configuration> <configLocation>${root-directory}/checkstyle.xml</configLocation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.jacoco</groupId> <artifactId> jacoco-maven-plugin </artifactId> <versionRange> [0.7.4.201502262128,) </versionRange> <goals> <goal>prepare-agent</goal> </goals> </pluginExecutionFilter> <action> <execute/> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencies> <!-- Selenium driver --> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-server</artifactId> <version>${selenium.version}</version> </dependency> <dependency> <groupId>io.toast-tk</groupId> <artifactId>toast-tk-adapters-api</artifactId> <version>${toast.version}</version> </dependency> </dependencies> <profiles> <profile> <id>deploy</id> <activation> <activeByDefault>false</activeByDefault> </activation> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <repositories> <repository> <id>ossrh-stagging</id> <name>SONATYPE STAGGING REPOSITORY</name> <url>https://oss.sonatype.org/content/groups/public</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </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</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>