htmlelements
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ru.sbtqa.htmlelements</groupId>
<artifactId>htmlelements</artifactId>
<version>1.21.5</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.htmlelements</groupId>
<artifactId>htmlelements</artifactId>
<version>1.21.5</version>
<packaging>pom</packaging>
<name>Yandex QATools HtmlElements</name>
<description>WebDriver PageObject extension</description>
<url>https://github.com/yandex-qatools/htmlelements/</url>
<properties>
<mockito.version>1.10.19</mockito.version>
<selenium.version>4.8.1</selenium.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<organization>
<name>Yandex</name>
<url>http://company.yandex.com</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/sbtqa/htmlelements</connection>
<developerConnection>scm:git:ssh://github.com:sbtqa/htmlelements.git</developerConnection>
<url>https://github.com/sbtqa/htmlelements/tree/master</url>
</scm>
<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>
<issueManagement>
<system>GitHub Issue Tracker</system>
<url>https://github.com/sbtqa/htmlelements/issues</url>
</issueManagement>
<modules>
<module>htmlelements-java</module>
<module>htmlelements-matchers</module>
<module>htmlelements-all</module>
</modules>
<build>
<plugins>
<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.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<developers>
<developer>
<id>AlexanderTolmachev</id>
<name>Alexander Tolmachev</name>
</developer>
<developer>
<id>eroshenkoam</id>
<name>Artem Eroshenko</name>
</developer>
<developer>
<id>artkoshelev</id>
<name>Artem Koshelev</name>
</developer>
<developer>
<id>leonsabr</id>
<name>Leonid Rudenko</name>
</developer>
<developer>
<id>lanwen</id>
<name>Kirill Merkushev</name>
</developer>
</developers>
</project>