|
28 | 28 |
|
29 | 29 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
30 | 30 |
|
31 | | - <maven.compiler.plugin>3.11.0</maven.compiler.plugin> |
32 | | - <maven.surefire.plugin>3.2.2</maven.surefire.plugin> |
| 31 | + <maven.compiler.plugin>3.13.0</maven.compiler.plugin> |
| 32 | + <maven.surefire.plugin>3.5.2</maven.surefire.plugin> |
| 33 | + |
| 34 | + <!-- QUARKUS --> |
| 35 | + <quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id> |
| 36 | + <quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id> |
| 37 | + <quarkus.platform.version>3.18.3</quarkus.platform.version> |
| 38 | + |
| 39 | + <testcontainers.reuse.enable>true</testcontainers.reuse.enable> |
33 | 40 |
|
34 | 41 | <thread.count>3</thread.count> |
35 | 42 | <env>ENV1</env> |
36 | 43 | <!-- PLAYWRIGHT --> |
37 | | - <playwright.verion>1.45.0</playwright.verion> |
| 44 | + <playwright.version>1.45.0</playwright.version> |
38 | 45 |
|
39 | 46 | <!-- JUNIT --> |
40 | 47 | <junit.version>5.10.3</junit.version> |
41 | | - <junit.platform.version>1.10.1</junit.platform.version> |
| 48 | + <junit.platform.version>1.10.5</junit.platform.version> |
42 | 49 | <junit.toolbox.version>2.4</junit.toolbox.version> |
43 | 50 | <aspectj.version>1.9.20.1</aspectj.version> |
44 | 51 |
|
|
48 | 55 | <allure.report.directory>${project.basedir}/target</allure.report.directory> |
49 | 56 |
|
50 | 57 | <!-- Logger --> |
| 58 | + <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
51 | 59 | <log4j.version>2.23.1</log4j.version> |
52 | 60 | <slf4j.version>1.7.30</slf4j.version> |
53 | 61 | <json-simple.version>1.1.1</json-simple.version> |
|
58 | 66 | <json-path.version>2.9.0</json-path.version> |
59 | 67 | <config.version>1.4.3</config.version> |
60 | 68 | <awaitility.version>4.2.1</awaitility.version> |
| 69 | + <playwright.version>1.45.0</playwright.version> |
61 | 70 | </properties> |
| 71 | + <repositories> |
| 72 | + <repository> |
| 73 | + <id>central1</id> |
| 74 | + <name>Central Repository</name> |
| 75 | + <url>https://repo1.maven.org/maven2</url> |
| 76 | + <layout>default</layout> |
| 77 | + <snapshots> |
| 78 | + <enabled>false</enabled> |
| 79 | + </snapshots> |
| 80 | + </repository> |
| 81 | + </repositories> |
| 82 | + |
| 83 | + <dependencyManagement> |
| 84 | + <dependencies> |
| 85 | + <dependency> |
| 86 | + <groupId>${quarkus.platform.group-id}</groupId> |
| 87 | + <artifactId>${quarkus.platform.artifact-id}</artifactId> |
| 88 | + <version>${quarkus.platform.version}</version> |
| 89 | + <type>pom</type> |
| 90 | + <scope>import</scope> |
| 91 | + </dependency> |
| 92 | + </dependencies> |
| 93 | + </dependencyManagement> |
| 94 | + |
62 | 95 | <dependencies> |
| 96 | + <dependency> |
| 97 | + <groupId>io.quarkus</groupId> |
| 98 | + <artifactId>quarkus-test-common</artifactId> |
| 99 | + <version>3.18.3</version> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>io.quarkus</groupId> |
| 103 | + <artifactId>quarkus-junit5</artifactId> |
| 104 | + <version>${quarkus.platform.version}</version> |
| 105 | + <scope>test</scope> |
| 106 | + <exclusions> |
| 107 | + <exclusion> |
| 108 | + <groupId>org.junit.vintage</groupId> |
| 109 | + <artifactId>junit-vintage-engine</artifactId> |
| 110 | + </exclusion> |
| 111 | + </exclusions> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>io.quarkus</groupId> |
| 115 | + <artifactId>quarkus-arc</artifactId> |
| 116 | + <version>3.18.3</version> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>com.google.auto.service</groupId> |
| 120 | + <artifactId>auto-service</artifactId> |
| 121 | + <version>1.1.1</version> |
| 122 | + </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>com.google.auto.service</groupId> |
| 125 | + <artifactId>auto-service-annotations</artifactId> |
| 126 | + <version>1.1.1</version> |
| 127 | + <scope>provided</scope> |
| 128 | + </dependency> |
| 129 | + |
| 130 | + |
| 131 | + |
| 132 | + <dependency> |
| 133 | + <groupId>org.testcontainers</groupId> |
| 134 | + <artifactId>testcontainers</artifactId> |
| 135 | + <version>1.20.4</version> |
| 136 | + <scope>test</scope> |
| 137 | + </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>org.testcontainers</groupId> |
| 140 | + <artifactId>junit-jupiter</artifactId> |
| 141 | + <version>1.20.4</version> |
| 142 | + <scope>test</scope> |
| 143 | + </dependency> |
| 144 | + <dependency> |
| 145 | + <groupId>org.testcontainers</groupId> |
| 146 | + <artifactId>mockserver</artifactId> |
| 147 | + <version>1.20.4</version> |
| 148 | + <scope>test</scope> |
| 149 | + </dependency> |
| 150 | + <dependency> |
| 151 | + <groupId>org.mock-server</groupId> |
| 152 | + <artifactId>mockserver-client-java</artifactId> |
| 153 | + <version>5.15.0</version> |
| 154 | + </dependency> |
| 155 | + |
| 156 | + |
| 157 | + <dependency> |
| 158 | + <groupId>org.eclipse.microprofile.config</groupId> |
| 159 | + <artifactId>microprofile-config-api</artifactId> |
| 160 | + <version>3.1</version> |
| 161 | + </dependency> |
| 162 | + |
63 | 163 |
|
64 | 164 | <dependency> |
65 | 165 | <groupId>com.microsoft.playwright</groupId> |
66 | 166 | <artifactId>playwright</artifactId> |
67 | | - <version>${playwright.verion}</version> |
| 167 | + <version>${playwright.version}</version> |
68 | 168 | </dependency> |
69 | 169 |
|
70 | 170 | <dependency> |
71 | 171 | <groupId>org.junit.jupiter</groupId> |
72 | 172 | <artifactId>junit-jupiter-engine</artifactId> |
73 | 173 | <version>${junit.version}</version> |
74 | 174 | <scope>compile</scope> |
| 175 | + <exclusions> |
| 176 | + <exclusion> |
| 177 | + <groupId>org.junit.vintage</groupId> |
| 178 | + <artifactId>junit-vintage-engine</artifactId> |
| 179 | + </exclusion> |
| 180 | + </exclusions> |
75 | 181 | </dependency> |
76 | 182 |
|
77 | 183 | <dependency> |
|
212 | 318 | </testResource> |
213 | 319 | </testResources> |
214 | 320 | <plugins> |
| 321 | + <plugin> |
| 322 | + <groupId>${quarkus.platform.group-id}</groupId> |
| 323 | + <artifactId>quarkus-maven-plugin</artifactId> |
| 324 | + <version>${quarkus.platform.version}</version> |
| 325 | + <extensions>true</extensions> |
| 326 | + <executions> |
| 327 | + <execution> |
| 328 | + <goals> |
| 329 | + <goal>build</goal> |
| 330 | + <goal>generate-code</goal> |
| 331 | + <goal>generate-code-tests</goal> |
| 332 | + <goal>native-image-agent</goal> |
| 333 | + </goals> |
| 334 | + </execution> |
| 335 | + </executions> |
| 336 | + </plugin> |
215 | 337 | <plugin> |
216 | 338 | <groupId>org.apache.maven.plugins</groupId> |
217 | 339 | <artifactId>maven-compiler-plugin</artifactId> |
|
232 | 354 | -Djdk.net.URLClassPath.disableClassPathURLCheck=true |
233 | 355 | --add-opens java.base/java.lang=ALL-UNNAMED |
234 | 356 | </argLine> |
| 357 | + <argLine>-Dquarkus.configuration.ignore-unknown=true</argLine> |
| 358 | + <argLine>-Djava.util.logging.manager=org.jboss.logmanager.LogManager</argLine> |
| 359 | + <systemPropertyVariables> |
| 360 | + <junit.platform.configuration.file>src/test/resources/junit-platform.properties</junit.platform.configuration.file> |
| 361 | + </systemPropertyVariables> |
235 | 362 | </configuration> |
236 | 363 | <dependencies> |
237 | 364 | <dependency> |
|
241 | 368 | </dependency> |
242 | 369 | </dependencies> |
243 | 370 | </plugin> |
| 371 | + <plugin> |
| 372 | + <groupId>org.apache.maven.plugins</groupId> |
| 373 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 374 | + <version>3.0.0-M9</version> |
| 375 | + <configuration> |
| 376 | + <argLine>-Djava.util.logging.manager=org.jboss.logmanager.LogManager</argLine> |
| 377 | + </configuration> |
| 378 | + </plugin> |
244 | 379 | <plugin> |
245 | 380 | <groupId>io.qameta.allure</groupId> |
246 | 381 | <artifactId>allure-maven</artifactId> |
|
0 commit comments