utam-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.salesforce.utam</groupId> <artifactId>utam-core</artifactId> <version>4.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2021, salesforce.com, inc. All rights reserved. SPDX-License-Identifier: MIT For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT --> <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> <artifactId>utam-java</artifactId> <groupId>com.salesforce.utam</groupId> <version>4.0.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>utam-core</artifactId> <name>${project.groupId}:${project.artifactId}</name> <description>The Java runtime library for UTAM Page Objects</description> <url>http://github.com/salesforce/utam-java</url> <dependencies> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> </dependency> <dependency> <groupId>io.appium</groupId> <artifactId>java-client</artifactId> <exclusions> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-support</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless.version}</version> <configuration> <java> <!-- Ignore the generated Java files by explicitly including our files. --> <!-- While we use Spotless at compile time, that config is different than our project config. --> <includes> <include>src/main/**/*.java</include> <include>src/test/java/utam/**/*.java</include> </includes> </java> </configuration> <executions> <execution> <id>check spotless after clean to fail CI builds if a change sneaks in. (locally, just run 'mvn validate' to fix)</id> <phase>clean</phase> <goals> <goal>check</goal> </goals> </execution> <execution> <id>apply spotless during (local) maven builds</id> <phase>validate</phase> <goals> <goal>apply</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>