11
11
12
12
<name >jDDD</name >
13
13
<description >Domain-Driven Design concepts in Java</description >
14
+ <url >https://github.com/odrotbohm/jddd</url >
14
15
15
16
<modules >
16
17
<module >jddd-core</module >
23
24
24
25
<properties >
25
26
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
27
+ <assertj .version>3.15.0</assertj .version>
26
28
<bytebuddy .version>1.10.8</bytebuddy .version>
29
+ <junit .version>5.6.1</junit .version>
27
30
<lombok .version>1.18.12</lombok .version>
28
31
<slf4j .version>1.7.30</slf4j .version>
29
32
</properties >
30
33
34
+ <licenses >
35
+ <license >
36
+ <name >Apache License, Version 2.0</name >
37
+ <url >https://www.apache.org/licenses/LICENSE-2.0</url >
38
+ </license >
39
+ </licenses >
40
+
41
+ <developers >
42
+ <developer >
43
+ <id >odrotbohm</id >
44
+ <name >Oliver Drotbohm</name >
45
+
46
+ <organization >Pivotal Software, Inc.</organization >
47
+ <organizationUrl >https://pivotal.io</organizationUrl >
48
+ </developer >
49
+ </developers >
50
+
51
+ <profiles >
52
+ <profile >
53
+ <id >sonatype</id >
54
+ <build >
55
+ <plugins >
56
+ <plugin >
57
+ <groupId >org.apache.maven.plugins</groupId >
58
+ <artifactId >maven-gpg-plugin</artifactId >
59
+ <executions >
60
+ <execution >
61
+ <id >sign-artifacts</id >
62
+ <phase >verify</phase >
63
+ <goals >
64
+ <goal >sign</goal >
65
+ </goals >
66
+ </execution >
67
+ </executions >
68
+ </plugin >
69
+ <plugin >
70
+ <groupId >org.apache.maven.plugins</groupId >
71
+ <artifactId >maven-javadoc-plugin</artifactId >
72
+ <executions >
73
+ <execution >
74
+ <id >attach-javadocs</id >
75
+ <goals >
76
+ <goal >jar</goal >
77
+ </goals >
78
+ </execution >
79
+ </executions >
80
+ <configuration >
81
+ <additionalOptions >
82
+ <additionalOption >-Xdoclint:none</additionalOption >
83
+ </additionalOptions >
84
+ </configuration >
85
+ </plugin >
86
+ </plugins >
87
+ </build >
88
+ </profile >
89
+ </profiles >
90
+
31
91
<build >
32
92
<plugins >
93
+
33
94
<plugin >
34
95
<groupId >org.apache.maven.plugins</groupId >
35
96
<artifactId >maven-compiler-plugin</artifactId >
40
101
</configuration >
41
102
</plugin >
42
103
43
- <!-- Explicitly declared to use a version that supports JUnit 5 OOTB -->
44
104
<plugin >
45
105
<artifactId >maven-surefire-plugin</artifactId >
46
106
<version >2.22.2</version >
47
107
</plugin >
48
108
109
+ <plugin >
110
+ <groupId >org.apache.maven.plugins</groupId >
111
+ <artifactId >maven-source-plugin</artifactId >
112
+ <executions >
113
+ <execution >
114
+ <id >attach-sources</id >
115
+ <goals >
116
+ <goal >jar-no-fork</goal >
117
+ </goals >
118
+ </execution >
119
+ </executions >
120
+ </plugin >
121
+
122
+ <plugin >
123
+ <groupId >org.codehaus.mojo</groupId >
124
+ <artifactId >flatten-maven-plugin</artifactId >
125
+ <executions >
126
+ <execution >
127
+ <id >flatten</id >
128
+ <phase >process-resources</phase >
129
+ <goals >
130
+ <goal >flatten</goal >
131
+ </goals >
132
+ <configuration >
133
+ <updatePomFile >true</updatePomFile >
134
+ <flattenMode >oss</flattenMode >
135
+ <pomElements >
136
+ <distributionManagement >remove</distributionManagement >
137
+ <properties >remove</properties >
138
+ <repositories >remove</repositories >
139
+ <profiles >remove</profiles >
140
+ </pomElements >
141
+ </configuration >
142
+ </execution >
143
+ <execution >
144
+ <id >flatten-clean</id >
145
+ <phase >clean</phase >
146
+ <goals >
147
+ <goal >clean</goal >
148
+ </goals >
149
+ </execution >
150
+ </executions >
151
+ </plugin >
152
+
49
153
</plugins >
154
+
50
155
</build >
51
156
157
+ <scm >
158
+ <url >https://github.com/odrotbohm/jddd</url >
159
+ <connection >scm:git:https://github.com/odrotbohm/jddd</connection >
160
+ <
developerConnection >scm:git:ssh://
[email protected] /odrotbohm/jddd.git</
developerConnection >
161
+ <tag >HEAD</tag >
162
+ </scm >
163
+
52
164
</project >
0 commit comments