|
6 | 6 |
|
7 | 7 | <groupId>com.eliasogueira.credit</groupId> |
8 | 8 | <artifactId>restassured-complete-basic-example</artifactId> |
9 | | - <version>2.6.0</version> |
| 9 | + <version>2.7.0</version> |
10 | 10 |
|
11 | 11 | <properties> |
12 | | - <java.version>24</java.version> |
| 12 | + <java.version>25</java.version> |
13 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 | 14 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
15 | | - <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> |
16 | | - <maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version> |
| 15 | + <maven-compiler-plugin.version>3.14.1</maven-compiler-plugin.version> |
| 16 | + <maven-surefire-plugin.version>3.5.4</maven-surefire-plugin.version> |
17 | 17 | <maven-failsafe-plugin.version>3.2.5</maven-failsafe-plugin.version> |
18 | 18 |
|
19 | | - <restassured.version>5.5.1</restassured.version> |
20 | | - <junit.jupiter.version>5.11.4</junit.jupiter.version> |
21 | | - <assertj.version>3.26.3</assertj.version> |
22 | | - <datafaker.version>2.4.2</datafaker.version> |
| 19 | + <restassured.version>6.0.0</restassured.version> |
| 20 | + <junit.jupiter.version>6.0.1</junit.jupiter.version> |
| 21 | + <assertj.version>3.27.6</assertj.version> |
| 22 | + <datafaker.version>2.5.3</datafaker.version> |
23 | 23 | <owner.version>1.0.12</owner.version> |
24 | | - <log4j.version>2.23.1</log4j.version> |
25 | | - <slf4j.version>2.0.13</slf4j.version> |
26 | | - <allure.version>2.29.1</allure.version> |
27 | | - <allure-maven.version>2.15.2</allure-maven.version> |
28 | | - <aspectj.version>1.9.23</aspectj.version> |
| 24 | + <log4j.version>2.25.3</log4j.version> |
| 25 | + <slf4j.version>2.0.17</slf4j.version> |
| 26 | + <allure.version>2.32.0</allure.version> |
| 27 | + <allure-maven.version>2.17.0</allure-maven.version> |
| 28 | + <aspectj.version>1.9.25.1</aspectj.version> |
29 | 29 | <allure.cmd.download.url> |
30 | 30 | https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline |
31 | 31 | </allure.cmd.download.url> |
32 | 32 |
|
33 | 33 | <!-- override vulnerable dependencies --> |
| 34 | + <commons-codec.version>1.20.0</commons-codec.version> |
34 | 35 | <jackson-databind.version>2.18.3</jackson-databind.version> |
| 36 | + <rhino.version>1.9.0</rhino.version> |
35 | 37 | </properties> |
36 | 38 |
|
37 | 39 | <dependencies> |
| 40 | + <!-- override vulnerable dependencies --> |
| 41 | + <dependency> |
| 42 | + <groupId>commons-codec</groupId> |
| 43 | + <artifactId>commons-codec</artifactId> |
| 44 | + <version>${commons-codec.version}</version> |
| 45 | + </dependency> |
| 46 | + |
| 47 | + <dependency> |
| 48 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 49 | + <artifactId>jackson-databind</artifactId> |
| 50 | + <version>${jackson-databind.version}</version> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <dependency> |
| 54 | + <groupId>org.mozilla</groupId> |
| 55 | + <artifactId>rhino</artifactId> |
| 56 | + <version>${rhino.version}</version> |
| 57 | + </dependency> |
| 58 | + |
38 | 59 | <dependency> |
39 | 60 | <groupId>io.rest-assured</groupId> |
40 | 61 | <artifactId>rest-assured</artifactId> |
|
44 | 65 | <groupId>commons-codec</groupId> |
45 | 66 | <artifactId>commons-codec</artifactId> |
46 | 67 | </exclusion> |
47 | | - <exclusion> |
48 | | - <groupId>com.fasterxml.jackson.core</groupId> |
49 | | - <artifactId>jackson-databind</artifactId> |
50 | | - </exclusion> |
51 | 68 | </exclusions> |
52 | 69 | </dependency> |
53 | 70 |
|
54 | 71 | <dependency> |
55 | 72 | <groupId>io.rest-assured</groupId> |
56 | 73 | <artifactId>json-schema-validator</artifactId> |
57 | 74 | <version>${restassured.version}</version> |
| 75 | + <exclusions> |
| 76 | + <exclusion> |
| 77 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 78 | + <artifactId>jackson-databind</artifactId> |
| 79 | + </exclusion> |
| 80 | + <exclusion> |
| 81 | + <groupId>org.mozilla</groupId> |
| 82 | + <artifactId>rhino</artifactId> |
| 83 | + </exclusion> |
| 84 | + </exclusions> |
58 | 85 | </dependency> |
59 | 86 |
|
60 | 87 | <dependency> |
|
63 | 90 | <version>${junit.jupiter.version}</version> |
64 | 91 | </dependency> |
65 | 92 |
|
| 93 | + <dependency> |
| 94 | + <groupId>org.junit.platform</groupId> |
| 95 | + <artifactId>junit-platform-launcher</artifactId> |
| 96 | + <version>${junit.jupiter.version}</version> |
| 97 | + <scope>test</scope> |
| 98 | + </dependency> |
| 99 | + |
66 | 100 | <dependency> |
67 | 101 | <groupId>org.assertj</groupId> |
68 | 102 | <artifactId>assertj-core</artifactId> |
|
93 | 127 | <version>${log4j.version}</version> |
94 | 128 | </dependency> |
95 | 129 |
|
96 | | - <dependency> |
97 | | - <groupId>io.qameta.allure</groupId> |
98 | | - <artifactId>allure-testng</artifactId> |
99 | | - <version>${allure.version}</version> |
100 | | - <exclusions> |
101 | | - <exclusion> |
102 | | - <groupId>org.testng</groupId> |
103 | | - <artifactId>testng</artifactId> |
104 | | - </exclusion> |
105 | | - </exclusions> |
106 | | - </dependency> |
107 | | - |
108 | 130 | <dependency> |
109 | 131 | <groupId>io.qameta.allure</groupId> |
110 | 132 | <artifactId>allure-attachments</artifactId> |
|
129 | 151 | <artifactId>slf4j-simple</artifactId> |
130 | 152 | <version>${slf4j.version}</version> |
131 | 153 | </dependency> |
132 | | - |
133 | | - <!-- override vulnerable dependencies --> |
134 | | - <dependency> |
135 | | - <groupId>com.fasterxml.jackson.core</groupId> |
136 | | - <artifactId>jackson-databind</artifactId> |
137 | | - <version>${jackson-databind.version}</version> |
138 | | - </dependency> |
139 | 154 | </dependencies> |
140 | 155 |
|
141 | 156 | <build> |
|
0 commit comments