|
19 | 19 | <maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel> |
20 | 20 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
21 | 21 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 22 | + <!-- dependency versions --> |
| 23 | + <junit.version>4.8.2</junit.version> |
| 24 | + <slf4j.version>1.6.1</slf4j.version> |
22 | 25 | </properties> |
23 | 26 | <licenses> |
24 | 27 | <license> |
|
70 | 73 | <plugin> |
71 | 74 | <groupId>org.apache.maven.plugins</groupId> |
72 | 75 | <artifactId>maven-javadoc-plugin</artifactId> |
| 76 | + <version>2.9</version> |
73 | 77 | <executions> |
74 | 78 | <execution> |
75 | 79 | <id>attach-javadocs</id> |
|
92 | 96 | <plugin> |
93 | 97 | <groupId>org.apache.maven.plugins</groupId> |
94 | 98 | <artifactId>maven-source-plugin</artifactId> |
| 99 | + <version>2.2.1</version> |
95 | 100 | <executions> |
96 | 101 | <execution> |
97 | 102 | <id>attach-sources</id> |
|
137 | 142 | <groupId>org.apache.maven.plugins</groupId> |
138 | 143 | <artifactId>maven-jar-plugin</artifactId> |
139 | 144 | <version>2.4</version> |
| 145 | + <executions> |
| 146 | + <execution> |
| 147 | + <goals> |
| 148 | + <goal>test-jar</goal> |
| 149 | + </goals> |
| 150 | + </execution> |
| 151 | + </executions> |
140 | 152 | </plugin> |
141 | 153 | <plugin> |
142 | 154 | <groupId>org.apache.maven.plugins</groupId> |
|
163 | 175 | </execution> |
164 | 176 | </executions> |
165 | 177 | </plugin> |
166 | | - <plugin> |
167 | | - <groupId>org.codehaus.mojo</groupId> |
168 | | - <artifactId>jdepend-maven-plugin</artifactId> |
169 | | - <version>2.0-beta-2</version> |
170 | | - </plugin> |
171 | | - <plugin> |
172 | | - <groupId>org.apache.maven.plugins</groupId> |
173 | | - <artifactId>maven-surefire-report-plugin</artifactId> |
174 | | - <version>2.15</version> |
175 | | - <configuration> |
176 | | - <aggregate>true</aggregate> |
177 | | - <xrefLocation>${project.reporting.outputDirectory}/../xref-test</xrefLocation> |
178 | | - <linkXRef>true</linkXRef> |
179 | | - </configuration> |
180 | | - </plugin> |
181 | | - <plugin> |
182 | | - <groupId>org.apache.maven.plugins</groupId> |
183 | | - <artifactId>maven-pmd-plugin</artifactId> |
184 | | - <version>3.0.1</version> |
185 | | - <configuration> |
186 | | - <targetJdk>${maven.compile.targetLevel}</targetJdk> |
187 | | - <format>xml</format> |
188 | | - <linkXref>true</linkXref> |
189 | | - <aggregate>true</aggregate> |
190 | | - <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding> |
191 | | - </configuration> |
192 | | - </plugin> |
193 | | - <plugin> |
194 | | - <groupId>org.codehaus.mojo</groupId> |
195 | | - <artifactId>taglist-maven-plugin</artifactId> |
196 | | - <version>2.4</version> |
197 | | - <configuration> |
198 | | - <aggregate>true</aggregate> |
199 | | - <encoding>${project.build.sourceEncoding}</encoding> |
200 | | - <tagListOptions> |
201 | | - <tagClasses> |
202 | | - <tagClass> |
203 | | - <displayName>Important fixes that have to be done until the |
204 | | - next |
205 | | - release</displayName> |
206 | | - <tags> |
207 | | - <tag> |
208 | | - <matchString>FIXME</matchString> |
209 | | - <matchType>ignoreCase</matchType> |
210 | | - </tag> |
211 | | - </tags> |
212 | | - </tagClass> |
213 | | - <tagClass> |
214 | | - <displayName>Things to verify and to check</displayName> |
215 | | - <tags> |
216 | | - <tag> |
217 | | - <matchString>// check:</matchString> |
218 | | - <matchType>ignoreCase</matchType> |
219 | | - </tag> |
220 | | - </tags> |
221 | | - </tagClass> |
222 | | - <tagClass> |
223 | | - <displayName>Just things to do</displayName> |
224 | | - <tags> |
225 | | - <tag> |
226 | | - <matchString>todo</matchString> |
227 | | - <matchType>ignoreCase</matchType> |
228 | | - </tag> |
229 | | - <tag> |
230 | | - <matchString>@todo</matchString> |
231 | | - <matchType>ignoreCase</matchType> |
232 | | - </tag> |
233 | | - <tag> |
234 | | - <matchString>XXX</matchString> |
235 | | - <matchType>ignoreCase</matchType> |
236 | | - </tag> |
237 | | - </tags> |
238 | | - </tagClass> |
239 | | - </tagClasses> |
240 | | - </tagListOptions> |
241 | | - </configuration> |
242 | | - </plugin> |
243 | | - <plugin> |
244 | | - <groupId>org.apache.maven.plugins</groupId> |
245 | | - <artifactId>maven-jxr-plugin</artifactId> |
246 | | - <version>2.3</version> |
247 | | - <configuration> |
248 | | - <aggregate>true</aggregate> |
249 | | - <linkJavadoc>true</linkJavadoc> |
250 | | - <aggregate>true</aggregate> |
251 | | - <javadocDir>${project.name}/apidocs</javadocDir> |
252 | | - <!-- stylesheet>${basedir}/src/site/css/javamoneys-jdoc.css</stylesheet --> |
253 | | - <windowTitle>JSR 354 - Java Money Sources</windowTitle> |
254 | | - </configuration> |
255 | | - </plugin> |
256 | | - <plugin> |
257 | | - <groupId>org.apache.maven.plugins</groupId> |
258 | | - <artifactId>maven-dependency-plugin</artifactId> |
259 | | - <version>2.8</version> |
260 | | - </plugin> |
| 178 | + |
| 179 | + |
| 180 | + |
261 | 181 | <plugin> |
262 | 182 | <groupId>org.codehaus.mojo</groupId> |
263 | 183 | <artifactId>versions-maven-plugin</artifactId> |
|
294 | 214 | <mavenExecutorId>forked-path</mavenExecutorId> |
295 | 215 | </configuration> |
296 | 216 | </plugin> |
297 | | - <plugin> |
298 | | - <groupId>org.apache.maven.plugins</groupId> |
299 | | - <artifactId>maven-jar-plugin</artifactId> |
300 | | - <version>2.2</version> |
301 | | - <executions> |
302 | | - <execution> |
303 | | - <goals> |
304 | | - <goal>test-jar</goal> |
305 | | - </goals> |
306 | | - </execution> |
307 | | - </executions> |
308 | | - </plugin> |
309 | 217 | <plugin> |
310 | 218 | <groupId>org.apache.felix</groupId> |
311 | 219 | <artifactId>maven-bundle-plugin</artifactId> |
|
322 | 230 | <artifactId>maven-site-plugin</artifactId> |
323 | 231 | <version>3.1</version> |
324 | 232 | </plugin> |
325 | | - <plugin> |
326 | | - <groupId>org.apache.maven.plugins</groupId> |
327 | | - <artifactId>maven-project-info-reports-plugin</artifactId> |
328 | | - <version>2.7</version> |
329 | | - </plugin> |
330 | | - <plugin> |
331 | | - <groupId>org.codehaus.mojo</groupId> |
332 | | - <artifactId>findbugs-maven-plugin</artifactId> |
333 | | - <version>2.5.2</version> |
334 | | - <configuration> |
335 | | - <xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation> |
336 | | - <xmlOutput>true</xmlOutput> |
337 | | - <effort>Max</effort> |
338 | | - <threshold>Low</threshold> |
339 | | - <failOnError>false</failOnError> |
340 | | - <findbugsXmlOutput>true</findbugsXmlOutput> |
341 | | - <findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory> |
342 | | - <srcHtml>xref/</srcHtml> |
343 | | - <srcHtmlType>JXR</srcHtmlType> |
344 | | - </configuration> |
345 | | - </plugin> |
346 | 233 | <plugin> |
347 | 234 | <groupId>org.jacoco</groupId> |
348 | 235 | <artifactId>jacoco-maven-plugin</artifactId> |
|
0 commit comments