Skip to content

Commit 175900d

Browse files
committed
starting moving test dependencies
1 parent 20dcdc5 commit 175900d

2 files changed

Lines changed: 111 additions & 105 deletions

File tree

core-tests/pom.xml

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,115 @@
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>

pom.xml

Lines changed: 0 additions & 105 deletions
Original file line numberDiff line numberDiff line change
@@ -572,111 +572,6 @@
572572
</dependency>
573573

574574

575-
<!-- DropWizard -->
576-
<dependency>
577-
<groupId>io.dropwizard</groupId>
578-
<artifactId>dropwizard-core</artifactId>
579-
<version>${dropwizard.version}</version>
580-
</dependency>
581-
<dependency>
582-
<groupId>io.dropwizard</groupId>
583-
<artifactId>dropwizard-assets</artifactId>
584-
<version>${dropwizard.version}</version>
585-
</dependency>
586-
<dependency>
587-
<groupId>io.dropwizard</groupId>
588-
<artifactId>dropwizard-testing</artifactId>
589-
<version>${dropwizard.version}</version>
590-
<scope>test</scope>
591-
</dependency>
592-
<dependency>
593-
<groupId>io.dropwizard</groupId>
594-
<artifactId>dropwizard-jetty</artifactId>
595-
<version>${dropwizard.version}</version>
596-
<exclusions>
597-
<exclusion>
598-
<groupId>org.eclipse.jetty</groupId>
599-
<artifactId>*</artifactId>
600-
</exclusion>
601-
</exclusions>
602-
</dependency>
603-
604-
<!-- Spring -->
605-
<dependency>
606-
<groupId>org.springframework.boot</groupId>
607-
<artifactId>spring-boot</artifactId>
608-
<version>${springboot.version}</version>
609-
</dependency>
610-
<dependency>
611-
<groupId>org.springframework.boot</groupId>
612-
<artifactId>spring-boot-starter-web</artifactId>
613-
<version>${springboot.version}</version>
614-
</dependency>
615-
<dependency>
616-
<groupId>org.springframework.boot</groupId>
617-
<artifactId>spring-boot-starter-data-jpa</artifactId>
618-
<version>${springboot.version}</version>
619-
</dependency>
620-
<dependency>
621-
<groupId>org.springframework.boot</groupId>
622-
<artifactId>spring-boot-starter-security</artifactId>
623-
<version>${springboot.version}</version>
624-
</dependency>
625-
<dependency>
626-
<groupId>org.springframework.boot</groupId>
627-
<artifactId>spring-boot-starter-validation</artifactId>
628-
<version>${springboot.version}</version>
629-
</dependency>
630-
<dependency>
631-
<groupId>org.springframework.boot</groupId>
632-
<artifactId>spring-boot-starter-test</artifactId>
633-
<scope>test</scope>
634-
<version>${springboot.version}</version>
635-
</dependency>
636-
<dependency>
637-
<groupId>org.springframework.boot</groupId>
638-
<artifactId>spring-boot-starter-data-mongodb</artifactId>
639-
<version>${springboot.version}</version>
640-
</dependency>
641-
<dependency>
642-
<groupId>org.springframework.boot</groupId>
643-
<artifactId>spring-boot-starter-data-redis</artifactId>
644-
<version>${springboot.version}</version>
645-
</dependency>
646-
<dependency>
647-
<groupId>org.springframework.data</groupId>
648-
<artifactId>spring-data-redis</artifactId>
649-
<version>${org.springframework.data.version}</version>
650-
</dependency>
651-
652-
<!-- SpringFox: Swagger documentation for SpringBoot-->
653-
<dependency>
654-
<groupId>io.springfox</groupId>
655-
<artifactId>springfox-swagger2</artifactId>
656-
<version>${springfox.version}</version>
657-
</dependency>
658-
<dependency>
659-
<groupId>io.springfox</groupId>
660-
<artifactId>springfox-spring-web</artifactId>
661-
<version>${springfox.version}</version>
662-
</dependency>
663-
664-
<!-- SpringDoc: Swagger/OpenApi documentation for SpringBoot-->
665-
<dependency>
666-
<groupId>org.springdoc</groupId>
667-
<artifactId>springdoc-openapi-ui</artifactId>
668-
<version>${springdoc.version}</version>
669-
</dependency>
670-
<dependency>
671-
<groupId>org.springdoc</groupId>
672-
<artifactId>springdoc-openapi-security</artifactId>
673-
<version>${springdoc.version}</version>
674-
</dependency>
675-
<dependency>
676-
<groupId>org.springdoc</groupId>
677-
<artifactId>springdoc-openapi-kotlin</artifactId>
678-
<version>${springdoc.version}</version>
679-
</dependency>
680575

681576
<!--
682577
Swagger for JaxRS

0 commit comments

Comments
 (0)