Skip to content

Commit 60f1312

Browse files
authored
Merge pull request #9 from DirectProjectJavaRI/develop
Releasing direct-smtp-mq-gateway 8.1.0
2 parents d90c0eb + de913d8 commit 60f1312

File tree

1 file changed

+66
-48
lines changed

1 file changed

+66
-48
lines changed

pom.xml

Lines changed: 66 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.nhind</groupId>
55
<artifactId>direct-smtp-mq-gateway</artifactId>
6-
<version>8.0.0</version>
6+
<version>8.1.0</version>
77
<packaging>jar</packaging>
88
<name>DirectProject Java RI Lightweight SMTP Server Gateway Standalone Spring Boot Micro-service Application</name>
99
<description>DirectProject Java RI Lightweight SMTP Server Gateway Standalone Spring Boot Micro-service Application</description>
@@ -88,17 +88,37 @@
8888
<groupId>org.codehaus.jackson</groupId>
8989
<artifactId>jackson-mapper-asl</artifactId>
9090
</exclusion>
91+
<exclusion>
92+
<groupId>org.bouncycastle</groupId>
93+
<artifactId>bcprov-jdk15on</artifactId>
94+
</exclusion>
95+
<exclusion>
96+
<groupId>org.bouncycastle</groupId>
97+
<artifactId>bcmail-jdk15on</artifactId>
98+
</exclusion>
99+
<exclusion>
100+
<groupId>org.bouncycastle</groupId>
101+
<artifactId>bcpkix-jdk15on</artifactId>
102+
</exclusion>
91103
</exclusions>
92104
</dependency>
93105
<dependency>
94106
<groupId>org.springframework.cloud</groupId>
95107
<artifactId>spring-cloud-starter-config</artifactId>
96-
<exclusions>
97-
<exclusion>
98-
<groupId>org.bouncycastle</groupId>
99-
<artifactId>bcpkix-jdk15on</artifactId>
100-
</exclusion>
101-
</exclusions>
108+
<exclusions>
109+
<exclusion>
110+
<groupId>org.bouncycastle</groupId>
111+
<artifactId>bcprov-jdk15on</artifactId>
112+
</exclusion>
113+
<exclusion>
114+
<groupId>org.bouncycastle</groupId>
115+
<artifactId>bcmail-jdk15on</artifactId>
116+
</exclusion>
117+
<exclusion>
118+
<groupId>org.bouncycastle</groupId>
119+
<artifactId>bcpkix-jdk15on</artifactId>
120+
</exclusion>
121+
</exclusions>
102122
</dependency>
103123
<dependency>
104124
<groupId>org.springframework.cloud</groupId>
@@ -132,7 +152,7 @@
132152
<dependency>
133153
<groupId>org.nhind</groupId>
134154
<artifactId>direct-common</artifactId>
135-
<version>8.0.0</version>
155+
<version>8.1.0</version>
136156
</dependency>
137157
<dependency>
138158
<groupId>org.subethamail</groupId>
@@ -199,21 +219,30 @@
199219
</jvmArguments>
200220
</configuration>
201221
</plugin>
202-
<plugin>
203-
<groupId>org.apache.maven.plugins</groupId>
204-
<artifactId>maven-javadoc-plugin</artifactId>
205-
<configuration>
222+
<plugin>
223+
<groupId>org.apache.maven.plugins</groupId>
224+
<artifactId>maven-javadoc-plugin</artifactId>
225+
<configuration>
206226
<additionalJOption>-Xdoclint:none</additionalJOption>
227+
<failOnError>false</failOnError>
207228
<charset>UTF-8</charset>
208229
<docencoding>UTF-8</docencoding>
209230
<docfilessubdirs>true</docfilessubdirs>
210-
<detectJavaApiLink>true</detectJavaApiLink>
211-
<detectLinks>true</detectLinks>
212231
<source>1.8</source>
213-
<show>public</show>
214-
</configuration>
215-
</plugin>
216-
<!-- for releases only
232+
<show>public</show>
233+
<failOnError>false</failOnError>
234+
</configuration>
235+
<executions>
236+
<execution>
237+
<phase>package</phase>
238+
<id>attach-javadocs</id>
239+
<goals>
240+
<goal>jar</goal>
241+
</goals>
242+
</execution>
243+
</executions>
244+
</plugin>
245+
<!-- for releases only
217246
<plugin>
218247
<groupId>org.apache.maven.plugins</groupId>
219248
<artifactId>maven-gpg-plugin</artifactId>
@@ -227,8 +256,17 @@
227256
</execution>
228257
</executions>
229258
<version>3.0.1</version>
230-
</plugin>
231-
-->
259+
</plugin>
260+
-->
261+
<plugin>
262+
<groupId>org.sonatype.central</groupId>
263+
<artifactId>central-publishing-maven-plugin</artifactId>
264+
<version>0.8.0</version>
265+
<extensions>true</extensions>
266+
<configuration>
267+
<publishingServerId>central</publishingServerId>
268+
</configuration>
269+
</plugin>
232270
</plugins>
233271
</build>
234272
<reporting>
@@ -237,20 +275,19 @@
237275
<groupId>org.apache.maven.plugins</groupId>
238276
<artifactId>maven-project-info-reports-plugin</artifactId>
239277
</plugin>
240-
<plugin>
241-
<groupId>org.apache.maven.plugins</groupId>
242-
<artifactId>maven-javadoc-plugin</artifactId>
243-
<configuration>
278+
<plugin>
279+
<groupId>org.apache.maven.plugins</groupId>
280+
<artifactId>maven-javadoc-plugin</artifactId>
281+
<configuration>
244282
<additionalJOption>-Xdoclint:none</additionalJOption>
283+
<failOnError>false</failOnError>
245284
<charset>UTF-8</charset>
246285
<docencoding>UTF-8</docencoding>
247286
<docfilessubdirs>true</docfilessubdirs>
248-
<detectJavaApiLink>true</detectJavaApiLink>
249-
<detectLinks>true</detectLinks>
250287
<source>1.8</source>
251-
<show>public</show>
252-
</configuration>
253-
</plugin>
288+
<show>public</show>
289+
</configuration>
290+
</plugin>
254291
<plugin>
255292
<groupId>org.apache.maven.plugins</groupId>
256293
<artifactId>maven-pmd-plugin</artifactId>
@@ -288,23 +325,4 @@
288325
</plugin>
289326
</plugins>
290327
</reporting>
291-
<distributionManagement>
292-
<site>
293-
<id>nhind-site</id>
294-
<name>NHIN Direct API publication site</name>
295-
<url>sftp://api.nhindirect.org/x/www/api.nhindirect.org/java/site/config/direct-smtp-mq-gateway/${project.version}</url>
296-
</site>
297-
<snapshotRepository>
298-
<id>sonatype-snapshot</id>
299-
<name>Sonatype OSS Maven SNAPSHOT Repository</name>
300-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
301-
<uniqueVersion>false</uniqueVersion>
302-
</snapshotRepository>
303-
<repository>
304-
<id>sonatype-release</id>
305-
<name>Sonatype OSS Maven Release Repositor</name>
306-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
307-
<uniqueVersion>false</uniqueVersion>
308-
</repository>
309-
</distributionManagement>
310328
</project>

0 commit comments

Comments
 (0)