local-opera-node
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.nordstrom.ui-tools</groupId>
<artifactId>local-opera-node</artifactId>
<version>3.7.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>
<parent>
<groupId>com.nordstrom.ui-tools</groupId>
<artifactId>local-grid-parent</artifactId>
<version>3.7.1</version>
</parent>
<artifactId>local-opera-node</artifactId>
<packaging>jar</packaging>
<name>Local Opera Node</name>
<dependencies>
<dependency>
<groupId>com.nordstrom.tools</groupId>
<artifactId>junit-foundation</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.nordstrom.ui-tools</groupId>
<artifactId>local-grid-hub</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.nordstrom.ui-tools</groupId>
<artifactId>local-grid-hub</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-opera-driver</artifactId>
<exclusions>
<exclusion>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-driver</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>${basedir}</directory>
<includes>
<include>**/hubConfig-s3-*.json</include>
<include>**/hubConfig-s4-*.json</include>
<include>**/nodeConfig-s3-*.json</include>
<include>**/nodeConfig-s4-*.json</include>
</includes>
</fileset>
<fileset>
<directory>logs</directory>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>${skipTests}</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>