<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"> <parent> <groupId>com.paypal.selion</groupId> <artifactId>SeLion-Parent</artifactId> <version>1.2.0</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>SeLion-Grid</artifactId> <packaging>jar</packaging> <description>A customized Grid for SeLion</description> <name>SeLion Grid</name> <properties> <suiteXmlPath>src/test/resources/</suiteXmlPath> <serverSuiteXmlFile>Default-Suite.xml</serverSuiteXmlFile> <powermock.version>1.6.2</powermock.version> <spring.version>4.2.4.RELEASE</spring.version> </properties> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>..</directory> <includes> <include>LICENSE</include> </includes> <targetPath>META-INF/</targetPath> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <suiteXmlFiles> <suiteXmlFile>${suiteXmlPath}${serverSuiteXmlFile}</suiteXmlFile> </suiteXmlFiles> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.5.4</version> <configuration> <archive> <manifest> <mainClass>com.paypal.selion.grid.JarSpawner</mainClass> <packageName>com.paypal.selion.grid</packageName> </manifest> </archive> <descriptors> <descriptor>src/main/resources/assembly.xml</descriptor> </descriptors> <finalName>${project.artifactId}-${project.version}</finalName> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>com.paypal.selion</groupId> <artifactId>SeLion-Project-BOM</artifactId> <version>${project.bom.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.paypal.selion</groupId> <artifactId>SeLion-Common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-server</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-exec</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <!-- This dependency brings in the SelendroidCapabilitiesMatcher --> <dependency> <groupId>io.selendroid</groupId> <artifactId>selendroid-grid-plugin</artifactId> </dependency> <dependency> <groupId>io.selendroid</groupId> <artifactId>selendroid-common</artifactId> </dependency> <!-- This dependency brings in ios capabilities --> <dependency> <groupId>org.uiautomation</groupId> <artifactId>ios-grid</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <!-- Powermock / mockito testing dependencies --> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-testng</artifactId> <version>${powermock.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </exclusion> <exclusion> <groupId>org.powermock</groupId> <artifactId>powermock-core</artifactId> </exclusion> <exclusion> <groupId>org.powermock</groupId> <artifactId>powermock-reflect</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>${powermock.version}</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>com.paypal.selion</groupId> <artifactId>SeLion-Grid</artifactId> <version>1.2.0</version> <classifier>jar-with-dependencies</classifier> </dependency>
com.paypal.selion:SeLion-Grid:1.2.0:jar-with-dependencies