Skip to content

Commit f222f30

Browse files
authored
Update dependencies to use last versions compatible to Java 8 (#28)
1 parent 5fcda2b commit f222f30

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed

pom.xml

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,29 @@
2323
</modules>
2424

2525
<properties>
26-
<aspectj.version>1.8.10</aspectj.version>
27-
<restassured.version>5.3.0</restassured.version>
26+
<aspectj.version>1.9.7</aspectj.version>
27+
<restassured.version>5.4.0</restassured.version>
28+
<allure.version>2.19.0</allure.version>
2829
<data.provider.thread.count>4</data.provider.thread.count>
2930
</properties>
3031

3132
<dependencies>
3233
<dependency>
3334
<groupId>com.github.aquality-automation</groupId>
3435
<artifactId>aquality-selenium</artifactId>
35-
<version>4.0.0</version>
36+
<version>4.1.4</version>
3637
</dependency>
3738

3839
<dependency>
3940
<groupId>com.google.guava</groupId>
4041
<artifactId>guava</artifactId>
41-
<version>31.1-jre</version>
42+
<version>32.1.2-jre</version>
4243
</dependency>
4344

4445
<dependency>
4546
<groupId>org.projectlombok</groupId>
4647
<artifactId>lombok</artifactId>
47-
<version>1.18.24</version>
48+
<version>1.18.30</version>
4849
<scope>provided</scope>
4950
</dependency>
5051

@@ -64,13 +65,20 @@
6465
<dependency>
6566
<groupId>io.qameta.allure</groupId>
6667
<artifactId>allure-rest-assured</artifactId>
67-
<version>2.19.0</version>
68+
<version>${allure.version}</version>
6869
</dependency>
6970

7071
<dependency>
7172
<groupId>commons-validator</groupId>
7273
<artifactId>commons-validator</artifactId>
73-
<version>1.7</version>
74+
<version>1.8.0</version>
75+
</dependency>
76+
77+
<dependency>
78+
<groupId>org.slf4j</groupId>
79+
<artifactId>slf4j-simple</artifactId>
80+
<version>2.0.10</version>
81+
<scope>test</scope>
7482
</dependency>
7583
</dependencies>
7684

@@ -79,7 +87,7 @@
7987
<plugin>
8088
<groupId>org.apache.maven.plugins</groupId>
8189
<artifactId>maven-compiler-plugin</artifactId>
82-
<version>3.8.1</version>
90+
<version>3.12.1</version>
8391
<configuration>
8492
<source>1.8</source>
8593
<target>1.8</target>
@@ -89,7 +97,7 @@
8997
<plugin>
9098
<groupId>org.apache.maven.plugins</groupId>
9199
<artifactId>maven-surefire-plugin</artifactId>
92-
<version>2.22.2</version>
100+
<version>3.2.5</version>
93101

94102
<configuration>
95103
<parallel>classes</parallel>
@@ -118,7 +126,7 @@
118126
<plugin>
119127
<groupId>io.qameta.allure</groupId>
120128
<artifactId>allure-maven</artifactId>
121-
<version>2.10.0</version>
129+
<version>2.12.0</version>
122130
</plugin>
123131
</plugins>
124132
</build>

0 commit comments

Comments
 (0)