1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+ <parent >
7
+ <groupId >com.solace.quarkus</groupId >
8
+ <artifactId >quarkus-solace-integration-tests-parent</artifactId >
9
+ <version >1.0.1-SNAPSHOT</version >
10
+ </parent >
11
+
12
+ <artifactId >solace-client-oauth-integration-tests</artifactId >
13
+ <name >Quarkus Solace Client - OAuth Integration Tests</name >
14
+
15
+ <dependencies >
16
+ <dependency >
17
+ <groupId >io.quarkus</groupId >
18
+ <artifactId >quarkus-resteasy-reactive-jackson</artifactId >
19
+ </dependency >
20
+ <dependency >
21
+ <groupId >com.solace.quarkus</groupId >
22
+ <artifactId >quarkus-solace-client</artifactId >
23
+ <version >${project.version} </version >
24
+ </dependency >
25
+ <dependency >
26
+ <groupId >io.quarkus</groupId >
27
+ <artifactId >quarkus-smallrye-health</artifactId >
28
+ </dependency >
29
+
30
+ <dependency >
31
+ <groupId >io.quarkus</groupId >
32
+ <artifactId >quarkus-junit5</artifactId >
33
+ <scope >test</scope >
34
+ </dependency >
35
+ <dependency >
36
+ <groupId >org.testcontainers</groupId >
37
+ <artifactId >testcontainers</artifactId >
38
+ <scope >test</scope >
39
+ </dependency >
40
+ <dependency >
41
+ <groupId >io.rest-assured</groupId >
42
+ <artifactId >rest-assured</artifactId >
43
+ <scope >test</scope >
44
+ </dependency >
45
+ <dependency >
46
+ <groupId >org.awaitility</groupId >
47
+ <artifactId >awaitility</artifactId >
48
+ <scope >test</scope >
49
+ </dependency >
50
+ <dependency >
51
+ <groupId >org.assertj</groupId >
52
+ <artifactId >assertj-core</artifactId >
53
+ <version >3.24.2</version >
54
+ <scope >test</scope >
55
+ </dependency >
56
+ </dependencies >
57
+
58
+ <build >
59
+ <plugins >
60
+ <plugin >
61
+ <groupId >io.quarkus</groupId >
62
+ <artifactId >quarkus-maven-plugin</artifactId >
63
+ <executions >
64
+ <execution >
65
+ <goals >
66
+ <goal >build</goal >
67
+ </goals >
68
+ </execution >
69
+ </executions >
70
+ </plugin >
71
+ <plugin >
72
+ <artifactId >maven-jar-plugin</artifactId >
73
+ <executions >
74
+ <execution >
75
+ <goals >
76
+ <goal >test-jar</goal >
77
+ </goals >
78
+ </execution >
79
+ </executions >
80
+ </plugin >
81
+ <plugin >
82
+ <artifactId >maven-surefire-plugin</artifactId >
83
+ <configuration >
84
+ </configuration >
85
+ </plugin >
86
+ </plugins >
87
+ </build >
88
+
89
+ <profiles >
90
+ <profile >
91
+ <id >native-image</id >
92
+ <activation >
93
+ <property >
94
+ <name >native</name >
95
+ </property >
96
+ </activation >
97
+ <build >
98
+ <plugins >
99
+ <plugin >
100
+ <artifactId >maven-failsafe-plugin</artifactId >
101
+ <executions >
102
+ <execution >
103
+ <goals >
104
+ <goal >integration-test</goal >
105
+ <goal >verify</goal >
106
+ </goals >
107
+ <configuration >
108
+ <systemPropertyVariables >
109
+ <native .image.path>
110
+ ${project.build.directory} /${project.build.finalName} -runner
111
+ </native .image.path>
112
+ <java .util.logging.manager>org.jboss.logmanager.LogManager
113
+ </java .util.logging.manager>
114
+ <maven .home>${maven.home} </maven .home>
115
+ </systemPropertyVariables >
116
+ </configuration >
117
+ </execution >
118
+ </executions >
119
+ </plugin >
120
+ </plugins >
121
+ </build >
122
+ <properties >
123
+ <quarkus .package.type>native</quarkus .package.type>
124
+ </properties >
125
+ </profile >
126
+ </profiles >
127
+
128
+ </project >
0 commit comments