1616 <module >e2e-tests</module >
1717 <module >integration-tests</module >
1818 </modules >
19+
20+ <dependencyManagement >
21+ <dependencies >
22+ <!-- DropWizard -->
23+ <dependency >
24+ <groupId >io.dropwizard</groupId >
25+ <artifactId >dropwizard-core</artifactId >
26+ <version >${dropwizard.version} </version >
27+ </dependency >
28+ <dependency >
29+ <groupId >io.dropwizard</groupId >
30+ <artifactId >dropwizard-assets</artifactId >
31+ <version >${dropwizard.version} </version >
32+ </dependency >
33+ <dependency >
34+ <groupId >io.dropwizard</groupId >
35+ <artifactId >dropwizard-testing</artifactId >
36+ <version >${dropwizard.version} </version >
37+ <scope >test</scope >
38+ </dependency >
39+ <dependency >
40+ <groupId >io.dropwizard</groupId >
41+ <artifactId >dropwizard-jetty</artifactId >
42+ <version >${dropwizard.version} </version >
43+ <exclusions >
44+ <exclusion >
45+ <groupId >org.eclipse.jetty</groupId >
46+ <artifactId >*</artifactId >
47+ </exclusion >
48+ </exclusions >
49+ </dependency >
50+
51+ <!-- Spring -->
52+ <dependency >
53+ <groupId >org.springframework.boot</groupId >
54+ <artifactId >spring-boot</artifactId >
55+ <version >${springboot.version} </version >
56+ </dependency >
57+ <dependency >
58+ <groupId >org.springframework.boot</groupId >
59+ <artifactId >spring-boot-starter-web</artifactId >
60+ <version >${springboot.version} </version >
61+ </dependency >
62+ <dependency >
63+ <groupId >org.springframework.boot</groupId >
64+ <artifactId >spring-boot-starter-data-jpa</artifactId >
65+ <version >${springboot.version} </version >
66+ </dependency >
67+ <dependency >
68+ <groupId >org.springframework.boot</groupId >
69+ <artifactId >spring-boot-starter-security</artifactId >
70+ <version >${springboot.version} </version >
71+ </dependency >
72+ <dependency >
73+ <groupId >org.springframework.boot</groupId >
74+ <artifactId >spring-boot-starter-validation</artifactId >
75+ <version >${springboot.version} </version >
76+ </dependency >
77+ <dependency >
78+ <groupId >org.springframework.boot</groupId >
79+ <artifactId >spring-boot-starter-test</artifactId >
80+ <scope >test</scope >
81+ <version >${springboot.version} </version >
82+ </dependency >
83+ <dependency >
84+ <groupId >org.springframework.boot</groupId >
85+ <artifactId >spring-boot-starter-data-mongodb</artifactId >
86+ <version >${springboot.version} </version >
87+ </dependency >
88+ <dependency >
89+ <groupId >org.springframework.boot</groupId >
90+ <artifactId >spring-boot-starter-data-redis</artifactId >
91+ <version >${springboot.version} </version >
92+ </dependency >
93+ <dependency >
94+ <groupId >org.springframework.data</groupId >
95+ <artifactId >spring-data-redis</artifactId >
96+ <version >${org.springframework.data.version} </version >
97+ </dependency >
98+
99+ <!-- SpringFox: Swagger documentation for SpringBoot-->
100+ <dependency >
101+ <groupId >io.springfox</groupId >
102+ <artifactId >springfox-swagger2</artifactId >
103+ <version >${springfox.version} </version >
104+ </dependency >
105+ <dependency >
106+ <groupId >io.springfox</groupId >
107+ <artifactId >springfox-spring-web</artifactId >
108+ <version >${springfox.version} </version >
109+ </dependency >
110+
111+ <!-- SpringDoc: Swagger/OpenApi documentation for SpringBoot-->
112+ <dependency >
113+ <groupId >org.springdoc</groupId >
114+ <artifactId >springdoc-openapi-ui</artifactId >
115+ <version >${springdoc.version} </version >
116+ </dependency >
117+ <dependency >
118+ <groupId >org.springdoc</groupId >
119+ <artifactId >springdoc-openapi-security</artifactId >
120+ <version >${springdoc.version} </version >
121+ </dependency >
122+ <dependency >
123+ <groupId >org.springdoc</groupId >
124+ <artifactId >springdoc-openapi-kotlin</artifactId >
125+ <version >${springdoc.version} </version >
126+ </dependency >
127+
128+ </dependencies >
129+ </dependencyManagement >
19130</project >
0 commit comments