Skip to content

Commit 533f4e9

Browse files
author
Greg Meyer
authored
Merge pull request #3 from DirectProjectJavaRI/develop
Updating pom for release. Ready for 6.0 release.
2 parents b3b8283 + 32910f0 commit 533f4e9

File tree

1 file changed

+17
-111
lines changed

1 file changed

+17
-111
lines changed

pom.xml

Lines changed: 17 additions & 111 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<groupId>org.nhind</groupId>
55
<artifactId>config-ui</artifactId>
66
<packaging>war</packaging>
7-
<version>6.0-SNAPSHOT</version>
7+
<version>6.0</version>
88
<name>NHIN Direct Java Configuration UI</name>
99
<description>NHIN Direct Java Configuration UI</description>
1010
<url>http://api.nhindirect.org/x/www/api.nhindirect.org/java/site/config/config-ui/${project.version}</url>
1111
<scm>
12-
<url>scm:git:https://github.com/DirectProject/config-ui.git</url>
13-
<connection>scm:git:https://github.com/DirectProject/config-ui.git</connection>
12+
<url>scm:git:https://github.com/DirectProjectJavaRI/config-ui.git</url>
13+
<connection>scm:git:https://github.com/DirectProjectJavaRI/config-ui.git</connection>
1414
</scm>
1515
<parent>
1616
<groupId>org.springframework.boot</groupId>
@@ -34,6 +34,9 @@
3434
<name>Greg Meyer</name>
3535
<id>GM2552</id>
3636
<email>gm2552@cerner.com</email>
37+
<roles>
38+
<role>owner</role>
39+
</roles>
3740
</developer>
3841
<developer>
3942
<name>Beau Grantham</name>
@@ -51,14 +54,6 @@
5154
<prerequisites>
5255
<maven>3.0.0</maven>
5356
</prerequisites>
54-
55-
<repositories>
56-
<repository>
57-
<id>spring-milestone</id>
58-
<name>Spring Milestone Releases</name>
59-
<url>https://repo.spring.io/milestone/</url>
60-
</repository>
61-
</repositories>
6257
<dependencyManagement>
6358
<dependencies>
6459
<dependency>
@@ -78,7 +73,7 @@
7873
<dependency>
7974
<groupId>org.springframework.cloud</groupId>
8075
<artifactId>spring-cloud-starter-parent</artifactId>
81-
<version>Greenwich.RC1</version>
76+
<version>Greenwich.RELEASE</version>
8277
<type>pom</type>
8378
<scope>import</scope>
8479
</dependency>
@@ -173,7 +168,7 @@
173168
<dependency>
174169
<groupId>${project.groupId}</groupId>
175170
<artifactId>direct-common</artifactId>
176-
<version>6.0-SNAPSHOT</version>
171+
<version>6.0</version>
177172
</dependency>
178173
<dependency>
179174
<groupId>${project.groupId}</groupId>
@@ -189,17 +184,17 @@
189184
<dependency>
190185
<groupId>${project.groupId}</groupId>
191186
<artifactId>config-service-client</artifactId>
192-
<version>6.0-SNAPSHOT</version>
187+
<version>6.0</version>
193188
</dependency>
194189
<dependency>
195190
<groupId>${project.groupId}</groupId>
196191
<artifactId>config-store</artifactId>
197-
<version>6.0-SNAPSHOT</version>
192+
<version>6.0</version>
198193
</dependency>
199194
<dependency>
200195
<groupId>${project.groupId}</groupId>
201196
<artifactId>config-service-jar</artifactId>
202-
<version>6.0-SNAPSHOT</version>
197+
<version>6.0</version>
203198
<scope>test</scope>
204199
</dependency>
205200
<dependency>
@@ -232,19 +227,20 @@
232227
<target>1.8</target>
233228
</configuration>
234229
</plugin>
235-
<!-- for releases only
230+
236231
<plugin>
237232
<groupId>org.apache.maven.plugins</groupId>
238233
<artifactId>maven-javadoc-plugin</artifactId>
239234
<version>2.6.1</version>
240235
<configuration>
236+
<additionalparam>-Xdoclint:none</additionalparam>
241237
<charset>UTF-8</charset>
242238
<docencoding>UTF-8</docencoding>
243239
<docfilessubdirs>true</docfilessubdirs>
244240
<detectJavaApiLink>true</detectJavaApiLink>
245241
<detectLinks>true</detectLinks>
246242
<source>1.8</source>
247-
<show>protected</show>
243+
<show>public</show>
248244
</configuration>
249245
<executions>
250246
<execution>
@@ -255,7 +251,8 @@
255251
</goals>
256252
</execution>
257253
</executions>
258-
</plugin>
254+
</plugin>
255+
<!-- for releases only
259256
<plugin>
260257
<groupId>org.apache.maven.plugins</groupId>
261258
<artifactId>maven-gpg-plugin</artifactId>
@@ -271,25 +268,13 @@
271268
</plugin>
272269
-->
273270
</plugins>
274-
<pluginManagement>
275-
<plugins>
276-
<plugin>
277-
<groupId>org.apache.maven.plugins</groupId>
278-
<artifactId>maven-release-plugin</artifactId>
279-
<version>2.0</version>
280-
<configuration>
281-
<tagBase>scm:hg:https://nhin-d.googlecode.com/hg/nhin-d/java/tags</tagBase>
282-
</configuration>
283-
</plugin>
284-
</plugins>
285-
</pluginManagement>
286271
</build>
287272
<reporting>
288273
<plugins>
289274
<plugin>
290275
<groupId>org.apache.maven.plugins</groupId>
291276
<artifactId>maven-project-info-reports-plugin</artifactId>
292-
<version>2.1</version>
277+
<version>2.9</version>
293278
<reportSets>
294279
<reportSet>
295280
<reports>
@@ -299,85 +284,6 @@
299284
</reportSets>
300285

301286
</plugin>
302-
<!--<plugin>
303-
<groupId>org.apache.maven.plugins</groupId>
304-
<artifactId>maven-javadoc-plugin</artifactId>
305-
<version>2.6.1</version>
306-
<configuration>
307-
<charset>UTF-8</charset>
308-
<docencoding>UTF-8</docencoding>
309-
<docfilessubdirs>true</docfilessubdirs>
310-
<detectJavaApiLink>true</detectJavaApiLink>
311-
<detectLinks>true</detectLinks>
312-
<source>1.8</source>
313-
<show>protected</show>
314-
<excludePackageNames>
315-
oasis.names.tc.ebxml_regrep.xsd:ihe.iti.xds_b._2007
316-
</excludePackageNames>
317-
</configuration>
318-
</plugin>
319-
<plugin>
320-
<groupId>org.apache.maven.plugins</groupId>
321-
<artifactId>maven-pmd-plugin</artifactId>
322-
<configuration>
323-
<targetJdk>1.8</targetJdk>
324-
</configuration>
325-
<version>3.0.1</version>
326-
</plugin>
327-
<plugin>
328-
<groupId>org.apache.maven.plugins</groupId>
329-
<artifactId>maven-surefire-report-plugin</artifactId>
330-
<version>2.15</version>
331-
</plugin>
332-
<plugin>
333-
<groupId>org.apache.maven.plugins</groupId>
334-
<artifactId>maven-jxr-plugin</artifactId>
335-
<version>2.3</version>
336-
</plugin>
337-
<plugin>
338-
<groupId>org.apache.maven.plugins</groupId>
339-
<artifactId>maven-changelog-plugin</artifactId>
340-
<configuration>
341-
<dates>
342-
--><!-- Insert the date of the most recent release --><!--
343-
<date>2007-01-01</date>
344-
</dates>
345-
<outputEncoding>UTF-8</outputEncoding>
346-
<type>date</type>
347-
</configuration>
348-
<version>2.2</version>
349-
</plugin>
350-
<plugin>
351-
<groupId>org.codehaus.mojo</groupId>
352-
<artifactId>clirr-maven-plugin</artifactId>
353-
<configuration>
354-
<minSeverity>info</minSeverity>
355-
</configuration>
356-
<version>2.5</version>
357-
</plugin>
358-
<plugin>
359-
<groupId>org.codehaus.mojo</groupId>
360-
<artifactId>findbugs-maven-plugin</artifactId>
361-
<version>1.2</version>
362-
<configuration>
363-
<effort>Max</effort>
364-
<localRepository></localRepository>
365-
</configuration>
366-
367-
</plugin>
368-
<plugin>
369-
<groupId>org.codehaus.mojo</groupId>
370-
<artifactId>taglist-maven-plugin</artifactId>
371-
<configuration>
372-
<tags>
373-
<tag>FIXME</tag>
374-
<tag>TODO</tag>
375-
<tag>WARN</tag>
376-
<tag>@deprecated</tag>
377-
</tags>
378-
</configuration>
379-
<version>2.4</version>
380-
</plugin>-->
381287
</plugins>
382288
</reporting>
383289
<distributionManagement>

0 commit comments

Comments
 (0)