Skip to content

Commit 44bc6e8

Browse files
committed
Added/moved pluign versions.
1 parent 1ec0f79 commit 44bc6e8

File tree

1 file changed

+15
-128
lines changed

1 file changed

+15
-128
lines changed

pom.xml

Lines changed: 15 additions & 128 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
<maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel>
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<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>
2225
</properties>
2326
<licenses>
2427
<license>
@@ -70,6 +73,7 @@
7073
<plugin>
7174
<groupId>org.apache.maven.plugins</groupId>
7275
<artifactId>maven-javadoc-plugin</artifactId>
76+
<version>2.9</version>
7377
<executions>
7478
<execution>
7579
<id>attach-javadocs</id>
@@ -92,6 +96,7 @@
9296
<plugin>
9397
<groupId>org.apache.maven.plugins</groupId>
9498
<artifactId>maven-source-plugin</artifactId>
99+
<version>2.2.1</version>
95100
<executions>
96101
<execution>
97102
<id>attach-sources</id>
@@ -137,6 +142,13 @@
137142
<groupId>org.apache.maven.plugins</groupId>
138143
<artifactId>maven-jar-plugin</artifactId>
139144
<version>2.4</version>
145+
<executions>
146+
<execution>
147+
<goals>
148+
<goal>test-jar</goal>
149+
</goals>
150+
</execution>
151+
</executions>
140152
</plugin>
141153
<plugin>
142154
<groupId>org.apache.maven.plugins</groupId>
@@ -163,101 +175,9 @@
163175
</execution>
164176
</executions>
165177
</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+
261181
<plugin>
262182
<groupId>org.codehaus.mojo</groupId>
263183
<artifactId>versions-maven-plugin</artifactId>
@@ -294,18 +214,6 @@
294214
<mavenExecutorId>forked-path</mavenExecutorId>
295215
</configuration>
296216
</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>
309217
<plugin>
310218
<groupId>org.apache.felix</groupId>
311219
<artifactId>maven-bundle-plugin</artifactId>
@@ -322,27 +230,6 @@
322230
<artifactId>maven-site-plugin</artifactId>
323231
<version>3.1</version>
324232
</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>
346233
<plugin>
347234
<groupId>org.jacoco</groupId>
348235
<artifactId>jacoco-maven-plugin</artifactId>

0 commit comments

Comments
 (0)