|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>config-manager</artifactId> |
6 | | - <version>6.0-SNAPSHOT</version> |
| 6 | + <version>6.0</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>NHIN Direct Java configuration manager</name> |
9 | 9 | <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> |
11 | 11 | <parent> |
12 | 12 | <groupId>org.springframework.boot</groupId> |
13 | 13 | <artifactId>spring-boot-starter-parent</artifactId> |
14 | 14 | <version>2.1.2.RELEASE</version> |
15 | 15 | <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> |
17 | 21 | <developers> |
18 | 22 | <developer> |
19 | 23 | <name>Greg Meyer</name> |
|
34 | 38 | </licenses> |
35 | 39 | <properties> |
36 | 40 | <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> |
38 | 42 | </properties> |
39 | 43 | <dependencyManagement> |
40 | 44 | <dependencies> |
|
51 | 55 | <dependency> |
52 | 56 | <groupId>org.nhind</groupId> |
53 | 57 | <artifactId>config-service-client</artifactId> |
54 | | - <version>6.0-SNAPSHOT</version> |
| 58 | + <version>6.0</version> |
55 | 59 | </dependency> |
56 | 60 | <dependency> |
57 | 61 | <groupId>org.nhind</groupId> |
58 | 62 | <artifactId>direct-common</artifactId> |
59 | | - <version>6.0-SNAPSHOT</version> |
| 63 | + <version>6.0</version> |
60 | 64 | </dependency> |
61 | 65 | <dependency> |
62 | 66 | <groupId>org.nhind</groupId> |
63 | 67 | <artifactId>agent</artifactId> |
64 | | - <version>6.0-SNAPSHOT</version> |
| 68 | + <version>6.0</version> |
65 | 69 | </dependency> |
66 | 70 | </dependencies> |
67 | 71 | <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> |
88 | 72 | <plugins> |
89 | 73 | <plugin> |
90 | 74 | <groupId>org.apache.maven.plugins</groupId> |
|
101 | 85 | <groupId>org.springframework.boot</groupId> |
102 | 86 | <artifactId>spring-boot-maven-plugin</artifactId> |
103 | 87 | </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 |
122 | 88 | <plugin> |
123 | 89 | <groupId>org.apache.maven.plugins</groupId> |
124 | 90 | <artifactId>maven-javadoc-plugin</artifactId> |
125 | 91 | <version>2.6.1</version> |
126 | 92 | <configuration> |
| 93 | + <additionalparam>-Xdoclint:none</additionalparam> |
127 | 94 | <charset>UTF-8</charset> |
128 | 95 | <docencoding>UTF-8</docencoding> |
129 | 96 | <docfilessubdirs>true</docfilessubdirs> |
130 | 97 | <detectJavaApiLink>true</detectJavaApiLink> |
131 | 98 | <detectLinks>true</detectLinks> |
132 | | - <source>1.6</source> |
133 | | - <show>protected</show> |
| 99 | + <source>1.8</source> |
| 100 | + <show>public</show> |
134 | 101 | </configuration> |
135 | 102 | <executions> |
136 | 103 | <execution> |
|
141 | 108 | </goals> |
142 | 109 | </execution> |
143 | 110 | </executions> |
144 | | - </plugin> |
| 111 | + </plugin> |
| 112 | + <!-- for releases only |
145 | 113 | <plugin> |
146 | 114 | <groupId>org.apache.maven.plugins</groupId> |
147 | 115 | <artifactId>maven-gpg-plugin</artifactId> |
|
163 | 131 | <plugin> |
164 | 132 | <groupId>org.apache.maven.plugins</groupId> |
165 | 133 | <artifactId>maven-project-info-reports-plugin</artifactId> |
166 | | - <version>2.1</version> |
| 134 | + <version>2.9</version> |
167 | 135 | </plugin> |
168 | 136 | <plugin> |
169 | 137 | <groupId>org.apache.maven.plugins</groupId> |
170 | 138 | <artifactId>maven-javadoc-plugin</artifactId> |
171 | 139 | <version>2.6.1</version> |
172 | 140 | <configuration> |
| 141 | + <additionalparam>-Xdoclint:none</additionalparam> |
173 | 142 | <charset>UTF-8</charset> |
174 | 143 | <docencoding>UTF-8</docencoding> |
175 | 144 | <docfilessubdirs>true</docfilessubdirs> |
176 | 145 | <detectJavaApiLink>true</detectJavaApiLink> |
177 | 146 | <detectLinks>true</detectLinks> |
178 | | - <source>1.6</source> |
179 | | - <show>protected</show> |
| 147 | + <source>1.8</source> |
| 148 | + <show>public</show> |
180 | 149 | </configuration> |
181 | 150 | </plugin> |
182 | 151 | <plugin> |
183 | 152 | <groupId>org.apache.maven.plugins</groupId> |
184 | 153 | <artifactId>maven-pmd-plugin</artifactId> |
185 | 154 | <configuration> |
186 | | - <targetJdk>1.6</targetJdk> |
| 155 | + <targetJdk>1.8</targetJdk> |
187 | 156 | </configuration> |
188 | 157 | </plugin> |
189 | 158 | <plugin> |
|
194 | 163 | <groupId>org.apache.maven.plugins</groupId> |
195 | 164 | <artifactId>maven-jxr-plugin</artifactId> |
196 | 165 | </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> |
216 | 166 | <plugin> |
217 | 167 | <groupId>org.codehaus.mojo</groupId> |
218 | 168 | <artifactId>findbugs-maven-plugin</artifactId> |
219 | | - <version>1.2</version> |
220 | 169 | <configuration> |
221 | 170 | <effort>Max</effort> |
222 | 171 | </configuration> |
|
233 | 182 | </tags> |
234 | 183 | </configuration> |
235 | 184 | </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> |
244 | 185 | </plugins> |
245 | 186 | </reporting> |
246 | 187 | <repositories> |
|
0 commit comments