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.lunatech.leaderboards</groupId >
8
+ <artifactId >leaderboards</artifactId >
9
+ <version >${revision} </version >
10
+ </parent >
11
+
12
+ <artifactId >leaderboards-app</artifactId >
13
+
14
+ <properties >
15
+ <maven .deploy.skip>true</maven .deploy.skip>
16
+ </properties >
17
+
18
+ <dependencies >
19
+ <dependency >
20
+ <groupId >io.quarkus</groupId >
21
+ <artifactId >quarkus-arc</artifactId >
22
+ </dependency >
23
+ <dependency >
24
+ <groupId >io.quarkus</groupId >
25
+ <artifactId >quarkus-hibernate-orm-panache</artifactId >
26
+ </dependency >
27
+ <dependency >
28
+ <groupId >io.quarkus</groupId >
29
+ <artifactId >quarkus-jdbc-postgresql</artifactId >
30
+ </dependency >
31
+ <dependency >
32
+ <groupId >io.quarkus</groupId >
33
+ <artifactId >quarkus-flyway</artifactId >
34
+ </dependency >
35
+ <dependency >
36
+ <groupId >io.quarkus</groupId >
37
+ <artifactId >quarkus-resteasy-reactive-jackson</artifactId >
38
+ </dependency >
39
+ <dependency >
40
+ <groupId >io.quarkus</groupId >
41
+ <artifactId >quarkus-smallrye-openapi</artifactId >
42
+ </dependency >
43
+ <dependency >
44
+ <groupId >io.quarkus</groupId >
45
+ <artifactId >quarkus-smallrye-graphql-client</artifactId >
46
+ </dependency >
47
+ <dependency >
48
+ <groupId >io.quarkus</groupId >
49
+ <artifactId >quarkus-oidc</artifactId >
50
+ </dependency >
51
+ <dependency >
52
+ <groupId >io.quarkus</groupId >
53
+ <artifactId >quarkus-keycloak-authorization</artifactId >
54
+ </dependency >
55
+ <dependency >
56
+ <groupId >org.projectlombok</groupId >
57
+ <artifactId >lombok</artifactId >
58
+ <version >1.18.24</version >
59
+ <scope >provided</scope >
60
+ </dependency >
61
+ <dependency >
62
+ <groupId >io.quarkus</groupId >
63
+ <artifactId >quarkus-config-yaml</artifactId >
64
+ </dependency >
65
+ <dependency >
66
+ <groupId >io.quarkus</groupId >
67
+ <artifactId >quarkus-cache</artifactId >
68
+ </dependency >
69
+ <dependency >
70
+ <groupId >io.quarkus</groupId >
71
+ <artifactId >quarkus-container-image-jib</artifactId >
72
+ </dependency >
73
+ <dependency >
74
+ <groupId >io.quarkus</groupId >
75
+ <artifactId >quarkus-junit5</artifactId >
76
+ <scope >test</scope >
77
+ </dependency >
78
+ <dependency >
79
+ <groupId >com.lunatech.leaderboards</groupId >
80
+ <artifactId >leaderboards-dto</artifactId >
81
+ <version >${revision} </version >
82
+ </dependency >
83
+ </dependencies >
84
+ <build >
85
+ <plugins >
86
+ <plugin >
87
+ <groupId >${quarkus.platform.group-id} </groupId >
88
+ <artifactId >quarkus-maven-plugin</artifactId >
89
+ <version >${quarkus.platform.version} </version >
90
+ <extensions >true</extensions >
91
+ <executions >
92
+ <execution >
93
+ <goals >
94
+ <goal >build</goal >
95
+ <goal >generate-code</goal >
96
+ <goal >generate-code-tests</goal >
97
+ </goals >
98
+ </execution >
99
+ </executions >
100
+ </plugin >
101
+ <plugin >
102
+ <artifactId >maven-compiler-plugin</artifactId >
103
+ <version >${compiler-plugin.version} </version >
104
+ <configuration >
105
+ <compilerArgs >
106
+ <arg >-parameters</arg >
107
+ </compilerArgs >
108
+ </configuration >
109
+ </plugin >
110
+ <plugin >
111
+ <artifactId >maven-surefire-plugin</artifactId >
112
+ <version >${surefire-plugin.version} </version >
113
+ <configuration >
114
+ <systemPropertyVariables >
115
+ <java .util.logging.manager>org.jboss.logmanager.LogManager</java .util.logging.manager>
116
+ <maven .home>${maven.home} </maven .home>
117
+ </systemPropertyVariables >
118
+ </configuration >
119
+ </plugin >
120
+ <plugin >
121
+ <artifactId >maven-failsafe-plugin</artifactId >
122
+ <version >${surefire-plugin.version} </version >
123
+ <executions >
124
+ <execution >
125
+ <goals >
126
+ <goal >integration-test</goal >
127
+ <goal >verify</goal >
128
+ </goals >
129
+ <configuration >
130
+ <systemPropertyVariables >
131
+ <native .image.path>${project.build.directory} /${project.build.finalName} -runner</native .image.path>
132
+ <java .util.logging.manager>org.jboss.logmanager.LogManager</java .util.logging.manager>
133
+ <maven .home>${maven.home} </maven .home>
134
+ </systemPropertyVariables >
135
+ </configuration >
136
+ </execution >
137
+ </executions >
138
+ </plugin >
139
+ </plugins >
140
+ </build >
141
+ <profiles >
142
+ <profile >
143
+ <id >native</id >
144
+ <activation >
145
+ <property >
146
+ <name >native</name >
147
+ </property >
148
+ </activation >
149
+ <properties >
150
+ <skipITs >false</skipITs >
151
+ <quarkus .native.container-build>true</quarkus .native.container-build>
152
+ <quarkus .package.type>native</quarkus .package.type>
153
+ </properties >
154
+ </profile >
155
+ </profiles >
156
+ </project >
0 commit comments