Skip to content

Commit 7f2ea9c

Browse files
committed
Allow multile urls for acceptance-test
1 parent 1e05af8 commit 7f2ea9c

File tree

13 files changed

+269
-208
lines changed

13 files changed

+269
-208
lines changed

acceptance-test/pom.xml

Lines changed: 112 additions & 104 deletions
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,119 @@
11
<?xml version="1.0"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<artifactId>code-quarkus-acceptance-test</artifactId>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<artifactId>code-quarkus-acceptance-test</artifactId>
56

6-
<name>Code Quarkus - Acceptance Test</name>
7-
<parent>
8-
<groupId>io.quarkus.code</groupId>
9-
<artifactId>code-quarkus-parent</artifactId>
10-
<version>61-SNAPSHOT</version>
11-
</parent>
12-
<properties>
13-
<maven.compiler.release>17</maven.compiler.release>
14-
<maven.compiler.source>17</maven.compiler.source>
15-
<maven.compiler.target>17</maven.compiler.target>
16-
<playwright.version>1.54.0</playwright.version>
17-
</properties>
18-
<dependencies>
19-
<dependency>
20-
<groupId>io.quarkus</groupId>
21-
<artifactId>quarkus-arc</artifactId>
22-
</dependency>
23-
<dependency>
24-
<groupId>com.microsoft.playwright</groupId>
25-
<artifactId>playwright</artifactId>
26-
<version>${playwright.version}</version>
27-
</dependency>
28-
<dependency>
29-
<groupId>com.microsoft.playwright</groupId>
30-
<artifactId>driver-bundle</artifactId>
31-
<version>${playwright.version}</version>
32-
</dependency>
33-
<dependency>
34-
<groupId>io.quarkus</groupId>
35-
<artifactId>quarkus-junit5</artifactId>
36-
<scope>test</scope>
37-
</dependency>
38-
</dependencies>
39-
<build>
40-
<plugins>
41-
<plugin>
42-
<groupId>${quarkus.platform.group-id}</groupId>
43-
<artifactId>quarkus-maven-plugin</artifactId>
44-
<version>${quarkus.platform.version}</version>
45-
<extensions>true</extensions>
46-
<executions>
47-
<execution>
48-
<goals>
49-
<goal>build</goal>
50-
<goal>generate-code</goal>
51-
<goal>generate-code-tests</goal>
52-
</goals>
53-
</execution>
54-
</executions>
55-
</plugin>
56-
<plugin>
57-
<artifactId>maven-compiler-plugin</artifactId>
58-
<version>${compiler-plugin.version}</version>
59-
<configuration>
60-
<parameters>${maven.compiler.parameters}</parameters>
61-
</configuration>
62-
</plugin>
63-
<plugin>
64-
<artifactId>maven-surefire-plugin</artifactId>
65-
<version>${surefire-plugin.version}</version>
66-
<configuration>
67-
<systemPropertyVariables>
68-
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
69-
<maven.home>${maven.home}</maven.home>
70-
</systemPropertyVariables>
71-
</configuration>
72-
</plugin>
73-
</plugins>
74-
</build>
75-
<profiles>
76-
<profile>
77-
<id>native</id>
78-
<activation>
79-
<property>
80-
<name>native</name>
81-
</property>
82-
</activation>
83-
<build>
7+
<name>Code Quarkus - Acceptance Test</name>
8+
<parent>
9+
<groupId>io.quarkus.code</groupId>
10+
<artifactId>code-quarkus-parent</artifactId>
11+
<version>60-SNAPSHOT</version>
12+
</parent>
13+
<properties>
14+
<maven.compiler.release>17</maven.compiler.release>
15+
<maven.compiler.source>17</maven.compiler.source>
16+
<maven.compiler.target>17</maven.compiler.target>
17+
<playwright.version>1.54.0</playwright.version>
18+
</properties>
19+
<dependencies>
20+
<dependency>
21+
<groupId>io.quarkus</groupId>
22+
<artifactId>quarkus-arc</artifactId>
23+
</dependency>
24+
<dependency>
25+
<groupId>com.microsoft.playwright</groupId>
26+
<artifactId>playwright</artifactId>
27+
<version>${playwright.version}</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>com.microsoft.playwright</groupId>
31+
<artifactId>driver-bundle</artifactId>
32+
<version>${playwright.version}</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>io.rest-assured</groupId>
36+
<artifactId>rest-assured</artifactId>
37+
</dependency>
38+
<dependency>
39+
<groupId>io.quarkus</groupId>
40+
<artifactId>quarkus-junit5</artifactId>
41+
<scope>test</scope>
42+
</dependency>
43+
</dependencies>
44+
<build>
8445
<plugins>
85-
<plugin>
86-
<artifactId>maven-failsafe-plugin</artifactId>
87-
<version>${surefire-plugin.version}</version>
88-
<executions>
89-
<execution>
90-
<goals>
91-
<goal>integration-test</goal>
92-
<goal>verify</goal>
93-
</goals>
46+
<plugin>
47+
<groupId>${quarkus.platform.group-id}</groupId>
48+
<artifactId>quarkus-maven-plugin</artifactId>
49+
<version>${quarkus.platform.version}</version>
50+
<extensions>true</extensions>
51+
<executions>
52+
<execution>
53+
<goals>
54+
<goal>build</goal>
55+
<goal>generate-code</goal>
56+
<goal>generate-code-tests</goal>
57+
</goals>
58+
</execution>
59+
</executions>
60+
</plugin>
61+
<plugin>
62+
<artifactId>maven-compiler-plugin</artifactId>
63+
<version>${compiler-plugin.version}</version>
9464
<configuration>
95-
<systemPropertyVariables>
96-
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
97-
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
98-
<maven.home>${maven.home}</maven.home>
99-
</systemPropertyVariables>
65+
<parameters>${maven.compiler.parameters}</parameters>
10066
</configuration>
101-
</execution>
102-
</executions>
103-
</plugin>
67+
</plugin>
68+
<plugin>
69+
<artifactId>maven-surefire-plugin</artifactId>
70+
<version>${surefire-plugin.version}</version>
71+
<configuration>
72+
<systemPropertyVariables>
73+
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
74+
<maven.home>${maven.home}</maven.home>
75+
</systemPropertyVariables>
76+
</configuration>
77+
</plugin>
10478
</plugins>
105-
</build>
106-
<properties>
107-
<quarkus.native.enabled>true</quarkus.native.enabled>
108-
</properties>
109-
</profile>
110-
</profiles>
79+
</build>
80+
<profiles>
81+
<profile>
82+
<id>native</id>
83+
<activation>
84+
<property>
85+
<name>native</name>
86+
</property>
87+
</activation>
88+
<build>
89+
<plugins>
90+
<plugin>
91+
<artifactId>maven-failsafe-plugin</artifactId>
92+
<version>${surefire-plugin.version}</version>
93+
<executions>
94+
<execution>
95+
<goals>
96+
<goal>integration-test</goal>
97+
<goal>verify</goal>
98+
</goals>
99+
<configuration>
100+
<systemPropertyVariables>
101+
<native.image.path>
102+
${project.build.directory}/${project.build.finalName}-runner
103+
</native.image.path>
104+
<java.util.logging.manager>org.jboss.logmanager.LogManager
105+
</java.util.logging.manager>
106+
<maven.home>${maven.home}</maven.home>
107+
</systemPropertyVariables>
108+
</configuration>
109+
</execution>
110+
</executions>
111+
</plugin>
112+
</plugins>
113+
</build>
114+
<properties>
115+
<quarkus.native.enabled>true</quarkus.native.enabled>
116+
</properties>
117+
</profile>
118+
</profiles>
111119
</project>

0 commit comments

Comments
 (0)