-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
213 lines (203 loc) · 7.64 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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?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>
<groupId>de.marcelsauer</groupId>
<artifactId>pragmatic_modular_monolith_parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<url>https://github.com/niesfisch/pragmatic_modular_monolith.git</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<developers>
<developer>
<id>msauer</id>
<email>[email protected]</email>
<url>https://github.com/niesfisch</url>
</developer>
</developers>
<modules>
<module>common</module>
<module>subdomain</module>
<module>app</module>
</modules>
<scm>
<connection>scm:git:ssh://[email protected]/niesfisch/pragmatic_modular_monolith</connection>
<developerConnection>scm:git:ssh://[email protected]/niesfisch/pragmatic_modular_monolith</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/niesfisch/pragmatic_modular_monolith.git</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/niesfisch/pragmatic_modular_monolith/issues</url>
</issueManagement>
<properties>
<assertj-core.version>3.24.2</assertj-core.version>
<encoding>UTF-8</encoding>
<java.version>17</java.version>
<lombok.version>1.18.30</lombok.version>
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.version>3.8.1</maven.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spotless-maven-plugin.version>2.43.0</spotless-maven-plugin.version>
<spring.version>3.3.0</spring.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!--for submodules using @Slf4j-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<!-- test deps -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.datafaker</groupId>
<artifactId>datafaker</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>${spotless-maven-plugin.version}</version>
<configuration>
<markdown>
<includes>
<!-- You have to set the target manually -->
<include>**/*.md</include>
</includes>
<flexmark/>
<!-- has its own section below -->
</markdown>
<java>
<!-- Cleanthat will refactor your code, but it may break your style: apply it before your formatter -->
<cleanthat/>
<googleJavaFormat>
<!-- GOOGLE or AOSP (optional) -->
<!-- https://github.com/google/google-java-format -->
<style>GOOGLE</style>
<!-- optional (requires at least 1.8) -->
<reflowLongStrings>true</reflowLongStrings>
</googleJavaFormat>
<!-- standard import order -->
<importOrder/>
<!-- Removing unused imports at the top of each file. -->
<removeUnusedImports/>
<!-- Fixes formatting of type annotations that may have occurred earlier in the formatting process. -->
<formatAnnotations/>
</java>
<pom>
<sortPom>
<!-- The encoding of the pom files -->
<encoding>UTF-8</encoding>
<!-- Should empty elements be expanded-->
<expandEmptyElements>false</expandEmptyElements>
<!-- Should a space be added inside self-closing elements-->
<spaceBeforeCloseEmptyElement>false</spaceBeforeCloseEmptyElement>
<!-- Keep empty lines -->
<keepBlankLines>true</keepBlankLines>
<!-- Indentation -->
<nrOfIndentSpace>2</nrOfIndentSpace>
<!-- Should empty lines be indented -->
<indentBlankLines>false</indentBlankLines>
<!-- Should schema locations be indented -->
<indentSchemaLocation>true</indentSchemaLocation>
<!--
Sort order of elements: https://github.com/Ekryd/sortpom/wiki/PredefinedSortOrderProfiles
recommended_2008_06 - The POM Code Convention that was chosen by Maven developers in 2008 (default for 3.0.0+)
-->
<predefinedSortOrder>recommended_2008_06</predefinedSortOrder>
<!-- Sort dependency exclusions: https://github.com/Ekryd/sortpom/wiki/SortDependencies-->
<sortDependencyExclusions/>
<!-- Sort properties -->
<sortProperties>true</sortProperties>
<!-- Sort plugin executions -->
<sortExecutions>false</sortExecutions>
</sortPom>
</pom>
</configuration>
<executions>
<execution>
<id>auto-style</id>
<goals>
<goal>apply</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<includes>
<include>**/*IT.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>