Skip to content

Commit

Permalink
updated dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mfaisalkhatri committed Aug 1, 2024
1 parent 4e53739 commit a7bd4e8
Show file tree
Hide file tree
Showing 2 changed files with 202 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<testng.version>7.10.2</testng.version>
<rest-assured.version>5.4.0</rest-assured.version>
<rest-assured.version>5.5.0</rest-assured.version>
<hamcrest-all.version>1.3</hamcrest-all.version>
<json-simple.version>1.1.1</json-simple.version>
<lombok.version>1.18.34</lombok.version>
<jackson-databind.version>2.15.2</jackson-databind.version>
<jackson-databind.version>2.17.2</jackson-databind.version>
<org-json.verion>20240303</org-json.verion>
<data-faker.version>2.2.2</data-faker.version>
<log4jcore.version>2.22.1</log4jcore.version>
<log4japi.version>2.22.1</log4japi.version>
<json-schema-validator.version>5.4.0</json-schema-validator.version>
<allure.version>2.27.0</allure.version>
<data-faker.version>2.3.1</data-faker.version>
<log4jcore.version>3.0.0-beta2</log4jcore.version>
<log4japi.version>3.0.0-beta2</log4japi.version>
<json-schema-validator.version>5.5.0</json-schema-validator.version>
<allure.version>2.28.1</allure.version>
<awaitility.version>4.2.1</awaitility.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-lang3.version>3.15.0</commons-lang3.version>
<aspectj.version>1.9.22.1</aspectj.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.3.0</maven-surefire-plugin.version>
<maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version>
<maven-enforcer.version>3.5.0</maven-enforcer.version>
<java-release.version>17</java-release.version>
<suite-xml>test-suite/testng.xml</suite-xml>
Expand Down
193 changes: 193 additions & 0 deletions pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.mfaisalkhatri</groupId>
<artifactId>rest-assured-examples</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<testng.version>7.10.2</testng.version>
<rest-assured.version>5.4.0</rest-assured.version>
<hamcrest-all.version>1.3</hamcrest-all.version>
<json-simple.version>1.1.1</json-simple.version>
<lombok.version>1.18.34</lombok.version>
<jackson-databind.version>2.15.2</jackson-databind.version>
<org-json.verion>20240303</org-json.verion>
<data-faker.version>2.2.2</data-faker.version>
<log4jcore.version>2.22.1</log4jcore.version>
<log4japi.version>2.22.1</log4japi.version>
<json-schema-validator.version>5.4.0</json-schema-validator.version>
<allure.version>2.27.0</allure.version>
<awaitility.version>4.2.1</awaitility.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<aspectj.version>1.9.22.1</aspectj.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.3.0</maven-surefire-plugin.version>
<maven-enforcer.version>3.5.0</maven-enforcer.version>
<java-release.version>17</java-release.version>
<suite-xml>test-suite/testng.xml</suite-xml>
</properties>

<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>${rest-assured.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>json-schema-validator</artifactId>
<version>${json-schema-validator.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-databind.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest-all.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>${json-simple.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${org-json.verion}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/net.datafaker/datafaker -->
<dependency>
<groupId>net.datafaker</groupId>
<artifactId>datafaker</artifactId>
<version>${data-faker.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4jcore.version}</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4japi.version}</version>
</dependency>

<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-testng</artifactId>
<version>${allure.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.awaitility/awaitility -->
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>${awaitility.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<release>${java-release.version}</release>
<encoding>UTF-8</encoding>
<forceJavacCompilerUse>true</forceJavacCompilerUse>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>${suite-xml}</suiteXmlFile>
</suiteXmlFiles>
<argLine>-Dfile.encoding=UTF-8 -Xdebug -Xnoagent</argLine>
<argLine>
-javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
</argLine>
</configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer.version}</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-maven</artifactId>
<version>2.12.0</version>
<configuration>
<reportDirectory>${project.build.directory}/target/allure-report</reportDirectory>
<reportVersion>${allure.version}</reportVersion>
<allureDownloadUrl>
https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/${allure.version}/allure-commandline-${allure.version}.zip
</allureDownloadUrl>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

0 comments on commit a7bd4e8

Please sign in to comment.