Skip to content

Commit

Permalink
Update dependencies to use last versions compatible to Java 8 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
mialeska committed Jan 22, 2024
1 parent 5fcda2b commit f222f30
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,29 @@
</modules>

<properties>
<aspectj.version>1.8.10</aspectj.version>
<restassured.version>5.3.0</restassured.version>
<aspectj.version>1.9.7</aspectj.version>
<restassured.version>5.4.0</restassured.version>
<allure.version>2.19.0</allure.version>
<data.provider.thread.count>4</data.provider.thread.count>
</properties>

<dependencies>
<dependency>
<groupId>com.github.aquality-automation</groupId>
<artifactId>aquality-selenium</artifactId>
<version>4.0.0</version>
<version>4.1.4</version>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
<version>32.1.2-jre</version>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>

Expand All @@ -64,13 +65,20 @@
<dependency>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-rest-assured</artifactId>
<version>2.19.0</version>
<version>${allure.version}</version>
</dependency>

<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>1.7</version>
<version>1.8.0</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.10</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand All @@ -79,7 +87,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.12.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand All @@ -89,7 +97,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>3.2.5</version>

<configuration>
<parallel>classes</parallel>
Expand Down Expand Up @@ -118,7 +126,7 @@
<plugin>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-maven</artifactId>
<version>2.10.0</version>
<version>2.12.0</version>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit f222f30

Please sign in to comment.