-
Notifications
You must be signed in to change notification settings - Fork 762
/
Copy pathpom.xml
188 lines (182 loc) · 7.11 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.0</version>
<relativePath></relativePath>
<!-- lookup parent from repository -->
</parent>
<groupId>de.rieckpil.blog</groupId>
<artifactId>blog-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>spring-boot-datajpatest</module>
<module>spring-boot-aws-integration-tests</module>
<module>spring-boot-integration-tests-wiremock</module>
<module>spring-boot-feature-toggles-with-togglz</module>
<module>spring-boot-rest-assured</module>
<module>spring-boot-thymeleaf-testing</module>
<module>spring-boot-web-mvc-testing</module>
<module>spring-boot-test-slice-annotations</module>
<module>spring-cloud-aws-sqs-testing</module>
<module>spring-websocket-integration-tests</module>
<module>spring-boot-test-mockmvc-webtestclient-testresttemplate</module>
<module>spring-mockmvc-with-webtestclient</module>
<module>load-testing-your-application</module>
<module>whats-new-in-spring-boot-2.1</module>
<module>whats-new-in-spring-boot-2.2</module>
<module>whats-new-in-spring-boot-2.3</module>
<module>avoid-repeating-attributes-in-jpa-entities</module>
<module>lazy-loading-of-jpa-attributes-with-hibernate</module>
<module>send-emails-with-sendgrid-and-spring-boot</module>
<module>demo-crud-application</module>
<module>deploy-spring-boot-to-gke</module>
<module>spring-boot-hibernate-flyway-best-practices</module>
<module>spring-boot-with-kotlin</module>
<module>difference-between-mock-and-mockbean</module>
<module>spring-boot-override-test-properties</module>
<module>spring-boot-test-mail-sending</module>
<module>spring-boot-shedlock</module>
<module>spring-data-mongo-test-testcontainers</module>
<module>dynamic-sql-querying-with-pagination</module>
<module>spring-boot-integration-tests-testcontainers</module>
<module>remote-debugging-spring-boot-application</module>
<module>spring-web-client-demo</module>
<module>spring-boot-uploading-and-downloading-files-with-react</module>
<module>spring-web-client-oauth2-reactive-stack</module>
<module>spring-web-client-oauth2-servlet-stack</module>
<module>spring-web-test-client</module>
<module>spring-web-client-customizing</module>
<module>spring-web-client-testing-with-mockwebserver</module>
<module>spring-web-client-exchange-retrieve</module>
<module>maven-plugins-to-ensure-quality</module>
<module>github-actions-java-maven</module>
<module>spring-web-client-expose-metrics</module>
<module>spring-boot-selenium-integration-tests</module>
<module>testing-json-serialization-spring</module>
<module>spring-web-mvc-cheat-sheet</module>
<module>spring-boot-aws-ssm-parameter-resolving</module>
<module>spring-security-aws-cognito-thymeleaf</module>
<module>testcontainers-reuse-existing-containers</module>
<module>spring-test-context-caching-introduction</module>
<module>spring-boot-kotlin-testcontainers</module>
<module>testing-spring-boot-applications-with-mockmvc</module>
<module>write-concise-web-tests-with-selenide</module>
<module>spring-boot-test-spring-events</module>
<module>spring-boot-testing-tips-and-tricks</module>
<module>expose-git-information-actuator</module>
<module>dependency-version-update-plugin</module>
<module>testing-spring-rest-template</module>
<module>azure-blob-storage-azurite-testing</module>
<module>caching-validation-testcontainers</module>
<module>testing-libraries-overview</module>
<module>reducing-testcontainers-execution-time</module>
<module>generating-test-data-with-instancio</module>
</modules>
<properties>
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>${testcontainers.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.2.5</version>
<configuration>
<includes>
<include>**/*IT.java</include>
<include>**/*WT.java</include>
</includes>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<configuration>
<skip>true</skip>
<rules>
<!-- <dependencyConvergence/>-->
</rules>
</configuration>
<executions>
<execution>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.43.0</version>
<configuration>
<java>
<googleJavaFormat>
<version>1.17.0</version>
<style>GOOGLE</style>
</googleJavaFormat>
<!-- <importOrder>-->
<!-- <file>${project.parent}/spotless.importorder</file>-->
<!-- </importOrder>-->
<removeUnusedImports></removeUnusedImports>
</java>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.ekryd.sortpom</groupId>
<artifactId>sortpom-maven-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<goals>
<goal>verify</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>