44 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
55 <modelVersion >4.0.0</modelVersion >
66
7- <groupId >com.knocscore </groupId >
8- <artifactId >knocscore -web-five</artifactId >
7+ <groupId >com.runnermann.wolf </groupId >
8+ <artifactId >vertx -web-five</artifactId >
99 <version >2.0-SNAPSHOT</version >
1010
1111 <properties >
1919 <!-- AWS -->
2020 <aws .java.sdk.version>2.31.11</aws .java.sdk.version>
2121
22- <vertx .version>5.0.0.CR7 </vertx .version>
22+ <vertx .version>5.0.0</vertx .version>
2323 <junit-jupiter .version>5.9.1</junit-jupiter .version>
24+ <assertj-core .version>3.8.0</assertj-core .version>
2425
25- <main .verticle>com.knocscore.web.http.HttpServerVerticle</main .verticle>
26+ <testcontainers >1.20.2</testcontainers >
27+
28+ <main .verticle>com.runnermann.wolf.example.web.http.HttpServerVerticle</main .verticle>
2629 <launcher .class>io.vertx.launcher.application.VertxApplication</launcher .class>
2730 </properties >
2831
4750
4851 <dependencies >
4952 <!-- REMOVE ME -->
50- <dependency >
51- <groupId >io.vertx</groupId >
52- <artifactId >vertx-web-templ-handlebars</artifactId >
53- </dependency >
54- <dependency >
55- <groupId >software.amazon.awssdk</groupId >
56- <artifactId >s3</artifactId >
57- </dependency >
58- <dependency >
59- <groupId >com.twilio.sdk</groupId >
60- <artifactId >twilio</artifactId >
61- <version >9.12.0</version >
62- <scope >compile</scope >
63- </dependency >
53+ <!-- <dependency>-->
54+ <!-- <groupId>io.vertx</groupId>-->
55+ <!-- <artifactId>vertx-web-templ-handlebars</artifactId>-->
56+ <!-- </dependency>-->
57+
6458 <!-- VERTX INITIAL -->
6559 <dependency >
6660 <groupId >io.vertx</groupId >
6761 <artifactId >vertx-launcher-application</artifactId >
62+ <version >${vertx.version} </version >
6863 </dependency >
6964 <dependency >
7065 <groupId >io.vertx</groupId >
7671 <artifactId >vertx-web</artifactId >
7772 <version >${vertx.version} </version >
7873 </dependency >
79- <!-- <dependency>-->
80- <!-- <groupId>io.vertx</groupId>-->
81- <!-- <artifactId>vertx-pg-client</artifactId>-->
82- <!-- <version>${vertx.version}</version>-->
83- <!-- </dependency>-->
8474 <dependency >
8575 <groupId >io.vertx</groupId >
8676 <artifactId >vertx-auth-oauth2</artifactId >
10595 <artifactId >vertx-pg-client</artifactId >
10696 <version >${vertx.version} </version >
10797 </dependency >
108- <!-- Codegen used by Service Proxy -->
10998 <dependency >
11099 <groupId >io.vertx</groupId >
111- <artifactId >vertx-codegen</artifactId >
112- <!-- downgraded, CR7 is not found -->
113- <version >5.0.0.CR6</version >
114- <classifier >processor</classifier >
115- <!-- <scope>provided</scope>-->
116- </dependency >
117- <!-- FOR DB SERVICE PROXY -->
118- <dependency >
119- <groupId >io.vertx</groupId >
120- <artifactId >vertx-service-proxy</artifactId >
100+ <artifactId >vertx-jdbc-client</artifactId >
121101 <version >${vertx.version} </version >
122102 </dependency >
123- <!-- Contains SQLClientHelper -->
124103
104+ <!-- FOR DB SERVICE PROXY -->
125105<!-- <dependency>-->
126- <!-- <groupId>io.smallrye.reactive </groupId>-->
127- <!-- <artifactId>smallrye-mutiny- vertx-sql-client </artifactId>-->
128- <!-- <version>3.18.1 </version>-->
106+ <!-- <groupId>io.vertx </groupId>-->
107+ <!-- <artifactId>vertx-service-proxy </artifactId>-->
108+ <!-- <version>${vertx.version} </version>-->
129109<!-- </dependency>-->
130110 <!-- interaction with DB -->
131111 <dependency >
132112 <groupId >io.vertx</groupId >
133113 <artifactId >vertx-rx-java3</artifactId >
134114 <version >${vertx.version} </version >
135115 </dependency >
136- <dependency >
137- <groupId >io.vertx</groupId >
138- <artifactId >vertx-rx-java3-gen</artifactId >
139- <version >${vertx.version} </version >
140- </dependency >
141116
117+ <!-- OTHER IMPORTS -->
142118 <dependency >
143- <groupId >io.vertx</groupId >
144- <artifactId >vertx-jdbc-client</artifactId >
145- <version >${vertx.version} </version >
119+ <groupId >com.twilio.sdk</groupId >
120+ <artifactId >twilio</artifactId >
121+ <version >9.12.0</version >
122+ <scope >compile</scope >
146123 </dependency >
147-
148-
149-
150-
151-
152-
153- <!-- OTHER IMPORTS -->
154124 <dependency >
155125 <groupId >software.amazon.awssdk</groupId >
156126 <artifactId >s3</artifactId >
170140 <version >${vertx.version} </version >
171141 <!-- <version>3.8.2</version> -->
172142 </dependency >
173-
143+ <!-- LOGGING -->
144+ <dependency >
145+ <groupId >ch.qos.logback</groupId >
146+ <artifactId >logback-classic</artifactId >
147+ <version >1.5.13</version >
148+ </dependency >
174149 <!-- TESTING -->
175150 <dependency >
176151 <groupId >io.vertx</groupId >
179154 </dependency >
180155 <dependency >
181156 <groupId >org.junit.jupiter</groupId >
182- <artifactId >junit-jupiter-api </artifactId >
157+ <artifactId >junit-jupiter</artifactId >
183158 <version >${junit-jupiter.version} </version >
184159 <scope >test</scope >
185160 </dependency >
186161 <dependency >
187- <groupId >org.junit.jupiter </groupId >
188- <artifactId >junit-jupiter-engine </artifactId >
189- <version >${junit-jupiter .version} </version >
162+ <groupId >org.assertj </groupId >
163+ <artifactId >assertj-core </artifactId >
164+ <version >${assertj-core .version} </version >
190165 <scope >test</scope >
191166 </dependency >
192167 <!-- END TESTING -->
193168 </dependencies >
169+ <!-- END TESTING -->
194170
195171 <build >
196172 <pluginManagement >
200176 <version >${maven-compiler-plugin.version} </version >
201177 <configuration >
202178 <release >21</release >
203-
204- <!-- Codegen -->
205- <annotationProcessors >
206- <annotationProcessor >io.vertx.codegen.CodeGenProcessor</annotationProcessor >
207- </annotationProcessors >
208- <generatedSourcesDirectory >${project.basedir} /src/main/generated</generatedSourcesDirectory >
209- <compilerArgs >
210- <arg >-AoutputDirectory=${project.basedir} /src/main</arg >
211- </compilerArgs >
212179 </configuration >
213180 </plugin >
214181 <plugin >
288255 </plugin >
289256 </plugins >
290257 </build >
291-
292-
293258</project >
0 commit comments