Skip to content

Commit 5f7caf4

Browse files
author
Greg Meyer
authored
Merge pull request #3 from DirectProjectJavaRI/develop
Updating pom file for release. Ready for 6.0 release.
2 parents b82bb86 + 6348303 commit 5f7caf4

File tree

1 file changed

+21
-80
lines changed

1 file changed

+21
-80
lines changed

pom.xml

Lines changed: 21 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,21 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.nhind</groupId>
55
<artifactId>config-manager</artifactId>
6-
<version>6.0-SNAPSHOT</version>
6+
<version>6.0</version>
77
<packaging>jar</packaging>
88
<name>NHIN Direct Java configuration manager</name>
99
<description>NHIN Direct Java configuration manager</description>
10-
<url>http://api.nhindirect.org/x/www/api.nhindirect.org/java/site/config/config-service-client/${project.version}</url>
10+
<url>https://github.com/DirectProjectJavaRI/config-manager</url>
1111
<parent>
1212
<groupId>org.springframework.boot</groupId>
1313
<artifactId>spring-boot-starter-parent</artifactId>
1414
<version>2.1.2.RELEASE</version>
1515
<relativePath />
16-
</parent>
16+
</parent>
17+
<scm>
18+
<url>scm:git:https://github.com/DirectProjectJavaRI/config-manager.git</url>
19+
<connection>scm:git:https://github.com/DirectProjectJavaRI/config-manager.git</connection>
20+
</scm>
1721
<developers>
1822
<developer>
1923
<name>Greg Meyer</name>
@@ -34,7 +38,7 @@
3438
</licenses>
3539
<properties>
3640
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37-
<spring-cloud-dependencies.version>Greenwich.RC1</spring-cloud-dependencies.version>
41+
<spring-cloud-dependencies.version>Greenwich.RELEASE</spring-cloud-dependencies.version>
3842
</properties>
3943
<dependencyManagement>
4044
<dependencies>
@@ -51,40 +55,20 @@
5155
<dependency>
5256
<groupId>org.nhind</groupId>
5357
<artifactId>config-service-client</artifactId>
54-
<version>6.0-SNAPSHOT</version>
58+
<version>6.0</version>
5559
</dependency>
5660
<dependency>
5761
<groupId>org.nhind</groupId>
5862
<artifactId>direct-common</artifactId>
59-
<version>6.0-SNAPSHOT</version>
63+
<version>6.0</version>
6064
</dependency>
6165
<dependency>
6266
<groupId>org.nhind</groupId>
6367
<artifactId>agent</artifactId>
64-
<version>6.0-SNAPSHOT</version>
68+
<version>6.0</version>
6569
</dependency>
6670
</dependencies>
6771
<build>
68-
<pluginManagement>
69-
<plugins>
70-
<plugin>
71-
<artifactId>maven-compiler-plugin</artifactId>
72-
<configuration>
73-
<fork>true</fork>
74-
<source>1.8</source>
75-
<target>1.8</target>
76-
</configuration>
77-
</plugin>
78-
<plugin>
79-
<groupId>org.apache.maven.plugins</groupId>
80-
<artifactId>maven-release-plugin</artifactId>
81-
<version>2.0</version>
82-
<configuration>
83-
<tagBase>scm:hg:https://nhin-d.googlecode.com/hg/nhin-d/java/tags</tagBase>
84-
</configuration>
85-
</plugin>
86-
</plugins>
87-
</pluginManagement>
8872
<plugins>
8973
<plugin>
9074
<groupId>org.apache.maven.plugins</groupId>
@@ -101,36 +85,19 @@
10185
<groupId>org.springframework.boot</groupId>
10286
<artifactId>spring-boot-maven-plugin</artifactId>
10387
</plugin>
104-
<plugin>
105-
<groupId>com.atlassian.maven.plugins</groupId>
106-
<artifactId>maven-clover2-plugin</artifactId>
107-
<version>3.0.2</version>
108-
<configuration>
109-
<jdk>1.6</jdk>
110-
<licenseLocation>${project.basedir}/../../licenses/clover.license</licenseLocation>
111-
</configuration>
112-
<executions>
113-
<execution>
114-
<phase>pre-site</phase>
115-
<goals>
116-
<goal>instrument</goal>
117-
</goals>
118-
</execution>
119-
</executions>
120-
</plugin>
121-
<!-- for releases only
12288
<plugin>
12389
<groupId>org.apache.maven.plugins</groupId>
12490
<artifactId>maven-javadoc-plugin</artifactId>
12591
<version>2.6.1</version>
12692
<configuration>
93+
<additionalparam>-Xdoclint:none</additionalparam>
12794
<charset>UTF-8</charset>
12895
<docencoding>UTF-8</docencoding>
12996
<docfilessubdirs>true</docfilessubdirs>
13097
<detectJavaApiLink>true</detectJavaApiLink>
13198
<detectLinks>true</detectLinks>
132-
<source>1.6</source>
133-
<show>protected</show>
99+
<source>1.8</source>
100+
<show>public</show>
134101
</configuration>
135102
<executions>
136103
<execution>
@@ -141,7 +108,8 @@
141108
</goals>
142109
</execution>
143110
</executions>
144-
</plugin>
111+
</plugin>
112+
<!-- for releases only
145113
<plugin>
146114
<groupId>org.apache.maven.plugins</groupId>
147115
<artifactId>maven-gpg-plugin</artifactId>
@@ -163,27 +131,28 @@
163131
<plugin>
164132
<groupId>org.apache.maven.plugins</groupId>
165133
<artifactId>maven-project-info-reports-plugin</artifactId>
166-
<version>2.1</version>
134+
<version>2.9</version>
167135
</plugin>
168136
<plugin>
169137
<groupId>org.apache.maven.plugins</groupId>
170138
<artifactId>maven-javadoc-plugin</artifactId>
171139
<version>2.6.1</version>
172140
<configuration>
141+
<additionalparam>-Xdoclint:none</additionalparam>
173142
<charset>UTF-8</charset>
174143
<docencoding>UTF-8</docencoding>
175144
<docfilessubdirs>true</docfilessubdirs>
176145
<detectJavaApiLink>true</detectJavaApiLink>
177146
<detectLinks>true</detectLinks>
178-
<source>1.6</source>
179-
<show>protected</show>
147+
<source>1.8</source>
148+
<show>public</show>
180149
</configuration>
181150
</plugin>
182151
<plugin>
183152
<groupId>org.apache.maven.plugins</groupId>
184153
<artifactId>maven-pmd-plugin</artifactId>
185154
<configuration>
186-
<targetJdk>1.6</targetJdk>
155+
<targetJdk>1.8</targetJdk>
187156
</configuration>
188157
</plugin>
189158
<plugin>
@@ -194,29 +163,9 @@
194163
<groupId>org.apache.maven.plugins</groupId>
195164
<artifactId>maven-jxr-plugin</artifactId>
196165
</plugin>
197-
<plugin>
198-
<groupId>org.apache.maven.plugins</groupId>
199-
<artifactId>maven-changelog-plugin</artifactId>
200-
<configuration>
201-
<dates>
202-
<!-- Insert the date of the most recent release -->
203-
<date>2007-01-01</date>
204-
</dates>
205-
<outputEncoding>UTF-8</outputEncoding>
206-
<type>date</type>
207-
</configuration>
208-
</plugin>
209-
<plugin>
210-
<groupId>org.codehaus.mojo</groupId>
211-
<artifactId>clirr-maven-plugin</artifactId>
212-
<configuration>
213-
<minSeverity>info</minSeverity>
214-
</configuration>
215-
</plugin>
216166
<plugin>
217167
<groupId>org.codehaus.mojo</groupId>
218168
<artifactId>findbugs-maven-plugin</artifactId>
219-
<version>1.2</version>
220169
<configuration>
221170
<effort>Max</effort>
222171
</configuration>
@@ -233,14 +182,6 @@
233182
</tags>
234183
</configuration>
235184
</plugin>
236-
<plugin>
237-
<groupId>com.atlassian.maven.plugins</groupId>
238-
<artifactId>maven-clover2-plugin</artifactId>
239-
<version>3.0.2</version>
240-
<configuration>
241-
<licenseLocation>${project.basedir}/../../licenses/clover.license</licenseLocation>
242-
</configuration>
243-
</plugin>
244185
</plugins>
245186
</reporting>
246187
<repositories>

0 commit comments

Comments
 (0)