ellithium
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.abdelrhman-ellithy</groupId> <artifactId>ellithium</artifactId> <version>1.1.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> <groupId>io.github.abdelrhman-ellithy</groupId> <artifactId>ellithium</artifactId> <version>${EllithiumVersion}</version> <packaging>jar</packaging> <description> Ellithium is a Unified powerful, flexible, and scalable test automation framework for Web, Mobile, SQL and no SQL DB, API Testing. !! Note !! it won't work without copying exec plugin from the user guide !! </description> <url>https://github.com/Abdelrhman-Ellithy/Ellithium</url> <name>${project.groupId}:${project.artifactId}</name> <developers> <developer> <name>Abdelrahman Ellithy</name> <email>abdelarhmanellithy@gmail.com</email> <url>https://www.linkedin.com/in/abdelrahman-ellithy-3841a7270/</url> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/Abdelrhman-Ellithy/Ellithium.git</connection> <developerConnection>scm:git:ssh://github.com/Abdelrhman-Ellithy/Ellithium.git</developerConnection> <url>https://github.com/Abdelrhman-Ellithy/Ellithium</url> </scm> <profiles> <profile> <id>github</id> <distributionManagement> <repository> <id>github</id> <name>GitHub Abdelrahman-Ellithy Apache Maven Packages</name> <url>https://maven.pkg.github.com/Abdelrhman-Ellithy/Ellithium</url> </repository> </distributionManagement> </profile> <profile> <id>central</id> <distributionManagement> <repository> <id>central</id> <name>OSSRH Release Repository</name> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>central</id> <name>OSSRH Snapshot Repository</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> </profile> </profiles> <properties> <EllithiumVersion>1.1.1</EllithiumVersion> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <seleniumVersion>4.27.0</seleniumVersion> <testNG>7.10.2</testNG> <JavaFaker>1.0.2</JavaFaker> <gsonVersion>2.11.0</gsonVersion> <SLF4JAPIVersion>2.0.13</SLF4JAPIVersion> <SLF4JSimpleVersion>2.0.13</SLF4JSimpleVersion> <log4jVersion>2.24.2</log4jVersion> <AllureVersion>2.29.1</AllureVersion> <aspectj.version>1.9.20.1</aspectj.version> <CSV>1.12.0</CSV> <ApachePOI>5.3.0</ApachePOI> <AddPOI>5.2.2</AddPOI> <Cucumber>7.20.1</Cucumber> <cucumberTsetNG>7.20.1</cucumberTsetNG> <restversion>5.5.0</restversion> <gherkinversion>29.0.0</gherkinversion> <hamcrestversion>3.0</hamcrestversion> <installToLocalRepository>mvn clean install -DskipTests</installToLocalRepository> <publishJavaDocs>mvn resources:resources javadoc:javadoc scm-publish:publish-scm</publishJavaDocs> <deployToMavenCentral> check version config, readme, gpg -ab target/ellithium-1.1.1.jar gpg -ab target/ellithium-1.1.1-javadoc.jar gpg -ab target/ellithium-1.1.1-sources.jar gpg -ab target/ellithium-1.1.1.pom gpg --keyserver keyserver.ubuntu.com --send-keys mvn clean deploy -P central,!github -DskipTests -X</deployToMavenCentral> <deployToGithubPacakge>mvn clean deploy -P github,!ossrh -DskipTests -X</deployToGithubPacakge> <PDFBoxVersion>2.0.27</PDFBoxVersion> <mavenSurefirePluginVersion>3.5.2</mavenSurefirePluginVersion> <mavenResourcesfirePluginVersion>3.3.1</mavenResourcesfirePluginVersion> <mavenDeployPluginVersion>3.1.3</mavenDeployPluginVersion> <mavenPublishPluginVersion>3.3.0</mavenPublishPluginVersion> <AllureJVMVersion>2.29.1</AllureJVMVersion> <HikariCPVersion>6.2.1</HikariCPVersion> <caffineVersion>3.1.8</caffineVersion> <mysqlVersion>9.1.0</mysqlVersion> <postgresqlVersion>42.7.4</postgresqlVersion> <mssqlVersion>12.9.0.jre11-preview</mssqlVersion> <oracleDBVersion>23.6.0.24.10</oracleDBVersion> <mongoDBVersion>3.12.14</mongoDBVersion> <redisDBVersion>5.2.0</redisDBVersion> <couchBaseVersion>3.7.6</couchBaseVersion> <appiumVersion>9.3.0</appiumVersion> </properties> <repositories> <repository> <id>central</id> <url>https://repo.maven.apache.org/maven2</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${seleniumVersion}</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/com.github.javafaker/javafaker --> <dependency> <groupId>com.github.javafaker</groupId> <artifactId>javafaker</artifactId> <version>${JavaFaker}</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gsonVersion}</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4jVersion}</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j2-impl --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>${log4jVersion}</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-1.2-api --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-1.2-api</artifactId> <version>${log4jVersion}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.qameta.allure</groupId> <artifactId>allure-testng</artifactId> <version>${AllureVersion}</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest --> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>${hamcrestversion}</version> <scope>compile</scope> </dependency> <!-- Apache Commons CSV --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-csv</artifactId> <version>${CSV}</version> <scope>compile</scope> </dependency> <!-- Apache POI for Excel --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${ApachePOI}</version> <scope>compile</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox --> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> <version>${PDFBoxVersion}</version> <scope>compile</scope> </dependency> <!-- Additional POI dependencies for handling Excel files --> <dependency> <groupId>org.apache.xmlbeans</groupId> <artifactId>xmlbeans</artifactId> <version>${AddPOI}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-java</artifactId> <version>${Cucumber}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-testng</artifactId> <version>${cucumberTsetNG}</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </exclusion> <exclusion> <groupId>io.cucumber</groupId> <artifactId>cucumber-core</artifactId> </exclusion> <exclusion> <groupId>io.cucumber</groupId> <artifactId>gherkin</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testNG}</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured --> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <version>${restversion}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <!-- If simple logger is used --> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> </dependency> <!-- https://mvnrepository.com/artifact/io.qameta.allure/allure-cucumber7-jvm --> <dependency> <groupId>io.qameta.allure</groupId> <artifactId>allure-cucumber7-jvm</artifactId> <version>${AllureJVMVersion}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP --> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>${HikariCPVersion}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine --> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>${caffineVersion}</version> </dependency> <!-- MySQL JDBC Driver --> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <version>${mysqlVersion}</version> </dependency> <!-- PostgreSQL JDBC Driver --> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresqlVersion}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc --> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <version>${mssqlVersion}</version> </dependency> <!-- Oracle JDBC Driver --> <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc8</artifactId> <version>${oracleDBVersion}</version> </dependency> <dependency> <groupId>com.ibm.db2.jcc</groupId> <artifactId>db2jcc</artifactId> <version>db2jcc4</version> </dependency> <!-- https://mvnrepository.com/artifact/org.mongodb/mongo-java-driver --> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongo-java-driver</artifactId> <version>${mongoDBVersion}</version> </dependency> <!-- https://mvnrepository.com/artifact/redis.clients/jedis --> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>${redisDBVersion}</version> </dependency> <dependency> <groupId>com.couchbase.client</groupId> <artifactId>java-client</artifactId> <version>${couchBaseVersion}</version> </dependency> <!-- https://mvnrepository.com/artifact/io.appium/java-client --> <dependency> <groupId>io.appium</groupId> <artifactId>java-client</artifactId> <version>${appiumVersion}</version> <exclusions> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</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> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <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-deploy-plugin</artifactId> <version>${mavenDeployPluginVersion}</version> <!-- Or check for the latest version --> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <!-- You can check for the latest 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-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> <sourcepath> ${project.basedir}/src/main/java;${project.basedir}/target/generated-sources/annotations </sourcepath> <encoding>UTF-8</encoding> <failOnError>false</failOnError> <show>public</show> <nohelp>true</nohelp> <header>Ellithium,${project.version}</header> <footer>Ellithium,${project.version}</footer> <doctitle>Ellithium,${project.version}</doctitle> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <centralBaseUrl>https://central.sonatype.com</centralBaseUrl> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> <waitMaxTime>3600</waitMaxTime> <!-- one hour --> </configuration> </plugin> <!-- Maven Surefire Plugin to run tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${mavenSurefirePluginVersion}</version> <configuration> <encoding>UTF-8</encoding> <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory> <printSummary>false</printSummary> <!-- Suppresses some output --> <testFailureIgnore>true</testFailureIgnore> <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests> <failIfNoTests>false</failIfNoTests> <trimStackTrace>false</trimStackTrace> <useFile>false</useFile> <properties> <property> <name>listener</name> <value>Ellithium.core.execution.listener.CustomTestNGListener</value> </property> </properties> <suiteXmlFiles> <suiteXmlFile>TestNGRunner.xml</suiteXmlFile> </suiteXmlFiles> </configuration> <dependencies> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.22.1</version> </dependency> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-testng</artifactId> <version>3.5.2</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>21</source> <target>21</target> </configuration> </plugin> <plugin> <groupId>io.qameta.allure</groupId> <artifactId>allure-maven</artifactId> <version>2.15.2</version> <executions> <execution> <id>allure-report</id> <phase>post-integration-test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <!-- Include all properties files --> </includes> </resource> <resource> <directory>src/main/resources/properties</directory> <includes> <include>**/*</include> <!-- Include all properties files --> </includes> </resource> <resource> <directory>.allure</directory> <includes> <include>**/*</include> <!-- Include all properties files --> </includes> </resource> </resources> </build> </project>