Skip to content

Commit 605391b

Browse files
1st commit
1 parent 0e73735 commit 605391b

525 files changed

Lines changed: 1482 additions & 26801 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.idea/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/aws.xml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.idea/encodings.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

pom.xml

Lines changed: 34 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
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>
@@ -19,10 +19,13 @@
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

@@ -47,24 +50,16 @@
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>
@@ -76,11 +71,6 @@
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>
@@ -105,52 +95,32 @@
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>
@@ -170,7 +140,12 @@
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>
@@ -179,18 +154,19 @@
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>
@@ -200,15 +176,6 @@
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>
@@ -288,6 +255,4 @@
288255
</plugin>
289256
</plugins>
290257
</build>
291-
292-
293258
</project>

0 commit comments

Comments
 (0)