utam-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.salesforce.utam</groupId> <artifactId>utam-java</artifactId> <version>4.0.1</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"> <modelVersion>4.0.0</modelVersion> <groupId>com.salesforce.utam</groupId> <artifactId>utam-java</artifactId> <packaging>pom</packaging> <version>4.0.1</version> <name>${project.groupId}:${project.artifactId}</name> <description>Java project for generating and using UTAM Page Objects</description> <url>http://github.com/salesforce/utam-java</url> <profiles> <profile> <id>coverage</id> <properties> <clover.version>4.4.1</clover.version> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.openclover</groupId> <artifactId>clover-maven-plugin</artifactId> <version>${clover.version}</version> </plugin> </plugins> </pluginManagement> </build> </profile> <profile> <id>release</id> <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> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <configuration> <detectJavaApiLink>false</detectJavaApiLink> </configuration> <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>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>0D643F2D</keyname> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven.release.plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <scmReleaseCommitComment>Releasing @{releaseLabel}</scmReleaseCommitComment> <scmDevelopmentCommitComment>Preparing for next development iteration</scmDevelopmentCommitComment> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> </profile> </profiles> <modules> <module>utam-core</module> <module>utam-compiler</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <maven.assembly.plugin.version>3.6.0</maven.assembly.plugin.version> <maven.clean.plugin.version>3.3.2</maven.clean.plugin.version> <maven.compiler.plugin.version>3.12.0</maven.compiler.plugin.version> <maven.deploy.plugin.version>3.1.1</maven.deploy.plugin.version> <maven.gpg.plugin.version>3.1.0</maven.gpg.plugin.version> <maven.install.plugin.version>3.1.1</maven.install.plugin.version> <maven.jar.plugin.version>3.3.0</maven.jar.plugin.version> <maven.javadoc.plugin.version>3.6.3</maven.javadoc.plugin.version> <maven.release.plugin.version>3.0.1</maven.release.plugin.version> <maven.source.plugin.version>3.3.0</maven.source.plugin.version> <maven.surefire.plugin.version>3.2.2</maven.surefire.plugin.version> <maven.exec.plugin.version>3.1.1</maven.exec.plugin.version> <selenium.version>4.21.0</selenium.version> <appium.version>9.2.2</appium.version> <slf4j.version>2.0.9</slf4j.version> <jackson.version>2.16.0</jackson.version> <google.java.format.version>1.19.1</google.java.format.version> <picocli-version>4.7.5</picocli-version> <testng.version>7.8.0</testng.version> <junit.version>4.13.2</junit.version> <mockito.version>2.21.0</mockito.version> <hamcrest.version>2.2</hamcrest.version> <sarif.version>2.0</sarif.version> <spotless.version>2.31.0</spotless.version> </properties> <scm> <connection>scm:git:https://github.com/salesforce/utam-java.git</connection> <developerConnection>scm:git:git@github.com:salesforce/utam-java.git</developerConnection> <url>https://github.com/salesforce/utam-java</url> <tag>4.0.1</tag> </scm> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>UTAM Developers</name> <email>utam@salesforce.com</email> <organization>Salesforce</organization> <organizationUrl>https://www.salesforce.com</organizationUrl> </developer> </developers> <dependencyManagement> <dependencies> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${selenium.version}</version> </dependency> <dependency> <groupId>io.appium</groupId> <artifactId>java-client</artifactId> <version>${appium.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.google.googlejavaformat</groupId> <artifactId>google-java-format</artifactId> <version>${google.java.format.version}</version> </dependency> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> <version>${picocli-version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>${hamcrest.version}</version> </dependency> <dependency> <groupId>com.contrastsecurity</groupId> <artifactId>java-sarif</artifactId> <version>${sarif.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>${maven.assembly.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>${maven.clean.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>${maven.install.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <!-- Required configuration for execution with google-java-format library --> <argLine>--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</argLine> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${maven.exec.plugin.version}</version> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless.version}</version> <configuration> <java> <googleJavaFormat> <version>1.19.1</version> <reflowLongStrings>true</reflowLongStrings> </googleJavaFormat> </java> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>