Test_Zeus
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.testzeus</groupId> <artifactId>Test_Zeus</artifactId> <version>1.0.5</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> <groupId>com.testzeus</groupId> <artifactId>Test_Zeus</artifactId> <version>1.0.5</version> <packaging>jar</packaging> <name>TestZeus</name> <description>UI and API testing framework built specifically for Salesforce</description> <url>https://github.com/TestZeus/testzeus-archetype</url> <licenses> <license> <name>GPLV3 License</name> <url>https://github.com/TestZeus/testzeus-archetype/blob/b28d641720debe27ac30b4ab527a5f976d6e1a7f/LICENSE</url> </license> </licenses> <developers> <developer> <name>Robin Gupta</name> <email>smilin.robin@gmail.com</email> <organization>None</organization> <organizationUrl>http://www.testzeus.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/TestZeus/testzeus-archetype.git</connection> <developerConnection>scm:git:ssh://github.com:smilinrobin/TestZeus/testzeus-archetype.git</developerConnection> <url>https://github.com/TestZeus/testzeus-archetype/tree/master</url> </scm> <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> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <selinium.java.version>3.141.59</selinium.java.version> <apache.httpcomponents.core.version>4.4.4</apache.httpcomponents.core.version> <apache.httpcomponents.client.version>4.5.14</apache.httpcomponents.client.version> <testng.version>7.0.0</testng.version> <commons-lang.version>2.6</commons-lang.version> <super-csv.version>2.4.0</super-csv.version> <jsoup.version>1.17.2</jsoup.version> <rest-assured.version>2.9.0</rest-assured.version> <junit.version>4.12</junit.version> <opencsv.version>2.3</opencsv.version> <json.version>20240303</json.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <version.commons-io>2.16.1</version.commons-io> </properties> <dependencies> <!-- https://mvnrepository.com/artifact/com.google.guava/guava --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>33.2.0-jre</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${version.commons-io}</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.10.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${selinium.java.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>${apache.httpcomponents.core.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${apache.httpcomponents.client.version}</version> </dependency> <!-- <dependency> --> <!-- <groupId>org.testng</groupId> --> <!-- <artifactId>testng</artifactId> --> <!-- <version>${testng.version}</version> --> <!-- </dependency> --> <!-- <dependency> --> <!-- <groupId>com.jayway.restassured</groupId> --> <!-- <artifactId>rest-assured</artifactId> --> <!-- <version>${rest-assured.version}</version> --> <!-- </dependency> --> <dependency> <groupId>net.minidev</groupId> <artifactId>json-smart</artifactId> <version>2.5.1</version> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>2.9.0</version> </dependency> <!-- <dependency> --> <!-- <groupId>net.sf.supercsv</groupId> --> <!-- <artifactId>super-csv</artifactId> --> <!-- <version>${super-csv.version}</version> --> <!-- </dependency> --> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>${commons-lang.version}</version> </dependency> <dependency> <groupId>jdom</groupId> <artifactId>jdom</artifactId> <version>1.1</version> </dependency> <dependency> <!-- jsoup HTML parser library @ http://jsoup.org/ --> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>${jsoup.version}</version> </dependency> <!-- <dependency> --> <!-- <groupId>junit</groupId> --> <!-- <artifactId>junit</artifactId> --> <!-- <version>${junit.version}</version> --> <!-- </dependency> --> <!-- <dependency> --> <!-- <groupId>net.sf.opencsv</groupId> --> <!-- <artifactId>opencsv</artifactId> --> <!-- <version>2.3</version> --> <!-- </dependency> --> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>${json.version}</version> </dependency> <dependency> <groupId>com.j2html</groupId> <artifactId>j2html</artifactId> <version>1.4.0</version> </dependency> <!-- https://mvnrepository.com/artifact/javax.mail/mail --> <!-- <dependency> --> <!-- <groupId>javax.mail</groupId> --> <!-- <artifactId>mail</artifactId> --> <!-- <version>1.4</version> --> <!-- </dependency> --> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.12.3</version> </dependency> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.12.3</version> </dependency> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.17.1</version> </dependency> <dependency> <groupId>io.github.bonigarcia</groupId> <artifactId>webdrivermanager</artifactId> <version>5.8.0</version> <scope>test</scope> </dependency> <!-- <dependency> --> <!-- <groupId>org.apache.logging.log4j</groupId> --> <!-- <artifactId>log4j-api</artifactId> --> <!-- <version>2.16.0</version> --> <!-- </dependency> --> <!-- <dependency> --> <!-- <groupId>org.apache.logging.log4j</groupId> --> <!-- <artifactId>log4j-core</artifactId> --> <!-- <version>2.16.0</version> --> <!-- </dependency> --> </dependencies> <profiles> <profile> <id>all-tests</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <gpg.executable>C:\Program Files (x86)\GnuPG\bin\gpg.exe</gpg.executable> </properties> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> <dependencies> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.4.15</version> <!-- apparently this needs to be exactly this version --> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</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-compiler-plugin</artifactId> <version>3.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> <configuration> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.1</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>