|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>direct-smtp-mq-gateway</artifactId> |
6 | | - <version>6.0</version> |
| 6 | + <version>8.0.0</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>DirectProject Java RI Lightweight SMTP Server Gateway Standalone Spring Boot Micro-service Application</name> |
9 | 9 | <description>DirectProject Java RI Lightweight SMTP Server Gateway Standalone Spring Boot Micro-service Application</description> |
|
13 | 13 | <connection>scm:git:https://github.com/DirectProject/nhin-d.git</connection> |
14 | 14 | </scm> |
15 | 15 | <prerequisites> |
16 | | - <maven>3.0.0</maven> |
| 16 | + <maven>3.5.0</maven> |
17 | 17 | </prerequisites> |
18 | | - <parent> |
| 18 | + <parent> |
19 | 19 | <groupId>org.springframework.boot</groupId> |
20 | 20 | <artifactId>spring-boot-starter-parent</artifactId> |
21 | | - <version>2.1.9.RELEASE</version> |
22 | | - </parent> |
| 21 | + <version>2.5.2</version> |
| 22 | + <relativePath /> |
| 23 | + </parent> |
23 | 24 | <developers> |
24 | 25 | <developer> |
25 | 26 | <name>Greg Meyer</name> |
|
30 | 31 | </roles> |
31 | 32 | </developer> |
32 | 33 | </developers> |
33 | | - |
34 | 34 | <licenses> |
35 | 35 | <license> |
36 | 36 | <name>New BSD License</name> |
|
39 | 39 | </licenses> |
40 | 40 | <properties> |
41 | 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 42 | + <subethasmtp.version>3.1.7</subethasmtp.version> |
| 43 | + <commons-net.version>3.8.0</commons-net.version> |
42 | 44 | </properties> |
43 | 45 | <dependencyManagement> |
44 | 46 | <dependencies> |
45 | 47 | <dependency> |
46 | 48 | <groupId>org.springframework.boot</groupId> |
47 | 49 | <artifactId>spring-boot-dependencies</artifactId> |
48 | | - <version>2.1.9.RELEASE</version> |
| 50 | + <version>2.5.2</version> |
49 | 51 | <type>pom</type> |
50 | 52 | <scope>import</scope> |
51 | 53 | </dependency> |
52 | 54 | <dependency> |
53 | 55 | <groupId>io.pivotal.spring.cloud</groupId> |
54 | 56 | <artifactId>spring-cloud-services-dependencies</artifactId> |
55 | | - <version>2.1.4.RELEASE</version> |
| 57 | + <version>3.3.0</version> |
56 | 58 | <type>pom</type> |
57 | 59 | <scope>import</scope> |
58 | | - </dependency> |
| 60 | + </dependency> |
59 | 61 | <dependency> |
60 | 62 | <groupId>org.springframework.cloud</groupId> |
61 | 63 | <artifactId>spring-cloud-starter-parent</artifactId> |
62 | | - <version>Greenwich.SR3</version> |
| 64 | + <version>2020.0.3</version> |
63 | 65 | <type>pom</type> |
64 | 66 | <scope>import</scope> |
65 | 67 | </dependency> |
|
105 | 107 | <dependency> |
106 | 108 | <groupId>org.springframework.cloud</groupId> |
107 | 109 | <artifactId>spring-cloud-starter-stream-rabbit</artifactId> |
108 | | - </dependency> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>org.springframework.cloud</groupId> |
| 113 | + <artifactId>spring-cloud-starter-bootstrap</artifactId> |
| 114 | + </dependency> |
109 | 115 | <dependency> |
110 | 116 | <groupId>org.springframework.boot</groupId> |
111 | 117 | <artifactId>spring-boot-configuration-processor</artifactId> |
112 | 118 | <optional>true</optional> |
113 | 119 | </dependency> |
| 120 | + <!-- Needed for unit testing function spring cloud streams --> |
| 121 | + <dependency> |
| 122 | + <groupId>org.springframework.cloud</groupId> |
| 123 | + <artifactId>spring-cloud-stream</artifactId> |
| 124 | + <type>test-jar</type> |
| 125 | + <scope>test</scope> |
| 126 | + <classifier>test-binder</classifier> |
| 127 | + </dependency> |
| 128 | + <dependency> |
| 129 | + <groupId>org.projectlombok</groupId> |
| 130 | + <artifactId>lombok</artifactId> |
| 131 | + </dependency> |
114 | 132 | <dependency> |
115 | 133 | <groupId>org.nhind</groupId> |
116 | 134 | <artifactId>direct-common</artifactId> |
117 | | - <version>6.0.1</version> |
| 135 | + <version>8.0.0</version> |
118 | 136 | </dependency> |
119 | 137 | <dependency> |
120 | 138 | <groupId>org.subethamail</groupId> |
121 | 139 | <artifactId>subethasmtp</artifactId> |
122 | | - <version>3.1.7</version> |
| 140 | + <version>${subethasmtp.version}</version> |
123 | 141 | <exclusions> |
124 | 142 | <exclusion> |
125 | 143 | <artifactId>mail</artifactId> |
|
130 | 148 | <dependency> |
131 | 149 | <groupId>commons-net</groupId> |
132 | 150 | <artifactId>commons-net</artifactId> |
133 | | - <version>3.6</version> |
| 151 | + <version>${commons-net.version}</version> |
134 | 152 | <scope>compile</scope> |
135 | | - </dependency> |
136 | | - <dependency> |
137 | | - <groupId>org.springframework.cloud</groupId> |
138 | | - <artifactId>spring-cloud-stream-test-support</artifactId> |
139 | | - <scope>test</scope> |
140 | 153 | </dependency> |
141 | 154 | <dependency> |
142 | 155 | <groupId>org.springframework.boot</groupId> |
|
186 | 199 | </jvmArguments> |
187 | 200 | </configuration> |
188 | 201 | </plugin> |
189 | | - <!-- for releases only |
190 | | - <plugin> |
191 | | - <groupId>org.apache.maven.plugins</groupId> |
192 | | - <artifactId>maven-javadoc-plugin</artifactId> |
193 | | - <version>2.9.1</version> |
194 | | - <configuration> |
| 202 | + <plugin> |
| 203 | + <groupId>org.apache.maven.plugins</groupId> |
| 204 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 205 | + <configuration> |
| 206 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
195 | 207 | <charset>UTF-8</charset> |
196 | 208 | <docencoding>UTF-8</docencoding> |
| 209 | + <docfilessubdirs>true</docfilessubdirs> |
| 210 | + <detectJavaApiLink>true</detectJavaApiLink> |
| 211 | + <detectLinks>true</detectLinks> |
197 | 212 | <source>1.8</source> |
198 | | - <show>public</show> |
199 | | - </configuration> |
200 | | - <executions> |
201 | | - <execution> |
202 | | - <phase>package</phase> |
203 | | - <id>attach-javadocs</id> |
204 | | - <goals> |
205 | | - <goal>jar</goal> |
206 | | - </goals> |
207 | | - </execution> |
208 | | - </executions> |
209 | | - </plugin> |
| 213 | + <show>public</show> |
| 214 | + </configuration> |
| 215 | + </plugin> |
| 216 | + <!-- for releases only |
210 | 217 | <plugin> |
211 | 218 | <groupId>org.apache.maven.plugins</groupId> |
212 | 219 | <artifactId>maven-gpg-plugin</artifactId> |
|
219 | 226 | </goals> |
220 | 227 | </execution> |
221 | 228 | </executions> |
| 229 | + <version>3.0.1</version> |
222 | 230 | </plugin> |
223 | 231 | --> |
224 | 232 | </plugins> |
|
228 | 236 | <plugin> |
229 | 237 | <groupId>org.apache.maven.plugins</groupId> |
230 | 238 | <artifactId>maven-project-info-reports-plugin</artifactId> |
231 | | - <version>2.9</version> |
232 | 239 | </plugin> |
233 | | - <plugin> |
234 | | - <groupId>org.apache.maven.plugins</groupId> |
235 | | - <artifactId>maven-javadoc-plugin</artifactId> |
236 | | - <version>3.0.1</version> |
237 | | - <configuration> |
| 240 | + <plugin> |
| 241 | + <groupId>org.apache.maven.plugins</groupId> |
| 242 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 243 | + <configuration> |
| 244 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
238 | 245 | <charset>UTF-8</charset> |
239 | 246 | <docencoding>UTF-8</docencoding> |
240 | 247 | <docfilessubdirs>true</docfilessubdirs> |
241 | 248 | <detectJavaApiLink>true</detectJavaApiLink> |
242 | 249 | <detectLinks>true</detectLinks> |
243 | 250 | <source>1.8</source> |
244 | | - <show>protected</show> |
245 | | - </configuration> |
246 | | - </plugin> |
| 251 | + <show>public</show> |
| 252 | + </configuration> |
| 253 | + </plugin> |
247 | 254 | <plugin> |
248 | 255 | <groupId>org.apache.maven.plugins</groupId> |
249 | 256 | <artifactId>maven-pmd-plugin</artifactId> |
|
258 | 265 | <plugin> |
259 | 266 | <groupId>org.apache.maven.plugins</groupId> |
260 | 267 | <artifactId>maven-jxr-plugin</artifactId> |
| 268 | + <version>3.1.1</version> |
261 | 269 | </plugin> |
262 | 270 | <plugin> |
263 | 271 | <groupId>org.codehaus.mojo</groupId> |
264 | 272 | <artifactId>findbugs-maven-plugin</artifactId> |
265 | | - <version>1.2</version> |
266 | 273 | <configuration> |
267 | 274 | <effort>Max</effort> |
268 | 275 | </configuration> |
|
0 commit comments