SeleniumWebDrivers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.Yash-777</groupId>
<artifactId>SeleniumWebDrivers</artifactId>
<version>1.0.0</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>
<!-- Artifact -->
<groupId>io.github.Yash-777</groupId>
<artifactId>SeleniumWebDrivers</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<!-- Project - ${project.artifactId} -->
<name>${project.groupId}:${project.artifactId}</name>
<description>
Automatic management of Selenium Driver Executable's in run-time for Java.
Which automates the required driver form cloud into your machine.
</description>
<url>https://yash-777.github.io/SeleniumWebDrivers</url>
<inceptionYear>2018</inceptionYear>
<!-- Organization -->
<organization>
<url>https://yash-777.github.io/SeleniumWebDrivers/</url>
<name>GitHub OpenSource</name>
</organization>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>Yash-777</id>
<name>Yashwanth</name>
<email>yashwanth.merugu@gmail.com</email>
<url>http://Yash-777.github.io</url>
<organization>N/A</organization>
<organizationUrl>N/A</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>+5</timezone>
</developer>
</developers>
<scm>
<url>https://github.com/Yash-777/SeleniumWebDrivers</url>
<connection>scm:git:https://github.com/Yash-777/SeleniumWebDrivers.git</connection>
<developerConnection>scm:git:https://github.com/Yash-777/SeleniumWebDrivers.git</developerConnection>
<tag>SeleniumWebDrivers</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/Yash-777/SeleniumWebDrivers/issues</url>
</issueManagement>
<distributionManagement>
<!-- Free in OSS Version « https://www.sonatype.com/nexus-repository-sonatype
https://blog.sonatype.com/2009/11/nexus-as-open-source-infrastructure-user-sign-up/
http://localhost:8081/nexus/content/repositories/sonatype-nexus-releases/
Deploy release artifacts into the staging repository -->
<repository>
<id>sonatype-nexus-releases</id>
<name>Sonatype Nexus Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<!-- Publish the versioned releases here
Deploy snapshot artifacts into repository
https://oss.sonatype.org:443/service/local/staging -->
<snapshotRepository>
<id>sonatype-nexus-snapshot</id>
<name>Sonatype Nexus Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<commons-lang3>3.4</commons-lang3>
<seleniumVersion>2.53.0</seleniumVersion>
<google.gson>2.8.0</google.gson>
<commons-io>2.5</commons-io>
<commons-compress>1.14</commons-compress>
<jarchivelib>0.7.1</jarchivelib>
<!-- Build « https://mvnrepository.com/artifact/org.apache.maven.plugins/ -->
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<jacoco-maven-plugin.version>0.7.9</jacoco-maven-plugin.version>
<!-- Java 7 -->
<java.version>1.7</java.version>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- https://stackoverflow.com/a/28284333/5081877 -->
<project.scm.id>my-scm-server</project.scm.id>
<nexus-staging-maven-plugin-version>1.6.7</nexus-staging-maven-plugin-version>
<sonatype-nexus-staging>sonatype-nexus-staging</sonatype-nexus-staging>
<sonatype-nexus-staging-url>https://oss.sonatype.org/</sonatype-nexus-staging-url>
<!--
<sonatype-nexus-staging>sonatype-nexus-local-staging</sonatype-nexus-staging>
<sonatype-nexus-staging-url>http://localhost:8081/nexus/</sonatype-nexus-staging-url>
-->
</properties>
<dependencies>
<!--
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>${seleniumVersion}</version>
</dependency> -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>${commons-compress}</version>
</dependency>
<dependency>
<groupId>org.rauschig</groupId>
<artifactId>jarchivelib</artifactId>
<version>${jarchivelib}</version>
<scope>compile</scope>
</dependency>
<!-- GSON « com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${google.gson}</version>
</dependency>
</dependencies>
<build>
<!-- <finalName>JarFileName</finalName> -->
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</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>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-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<tagNameFormat>@{project.artifactId}/@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
<checkModificationExcludes>
<!-- <checkModificationExclude>pom.xml</checkModificationExclude> -->
<checkModificationExclude>target/</checkModificationExclude>
<checkModificationExclude>docs/</checkModificationExclude>
<checkModificationExclude>.gitignore</checkModificationExclude>
<checkModificationExclude>README.md</checkModificationExclude>
<checkModificationExclude>LICENSE</checkModificationExclude>
</checkModificationExcludes>
</configuration>
</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>${sonatype-nexus-staging}</serverId>
<nexusUrl>${sonatype-nexus-staging-url}</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</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>
<!-- <resources>
<resource>
<directory>${basedir}/lib</directory>
<filtering>true</filtering>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
</resources> -->
</build>
</project>