|
176 | 176 | </build> |
177 | 177 |
|
178 | 178 | <reporting> |
179 | | - <plugins> |
180 | | - <plugin> |
181 | | - <groupId>org.codehaus.mojo</groupId> |
182 | | - <artifactId>findbugs-maven-plugin</artifactId> |
183 | | - <version>1.2</version> |
184 | | - <configuration> |
185 | | - <threshold>Normal</threshold> |
186 | | - <effort>Default</effort> |
187 | | - </configuration> |
188 | | - </plugin> |
189 | | - <plugin> |
190 | | - <groupId>org.apache.maven.plugins</groupId> |
191 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
192 | | - <configuration> |
193 | | - <configLocation>src/conf/checkstyle.xml</configLocation> |
194 | | - </configuration> |
195 | | - </plugin> |
196 | | - <plugin> |
197 | | - <groupId>org.apache.maven.plugins</groupId> |
198 | | - <artifactId>maven-pmd-plugin</artifactId> |
199 | | - </plugin> |
200 | | - <plugin> |
201 | | - <groupId>org.codehaus.mojo</groupId> |
202 | | - <artifactId>cobertura-maven-plugin</artifactId> |
203 | | - <version>2.2</version> |
204 | | - </plugin> |
205 | | - <plugin> |
206 | | - <groupId>org.codehaus.mojo</groupId> |
207 | | - <artifactId>clirr-maven-plugin</artifactId> |
208 | | - <version>2.2.1</version> |
209 | | - <configuration> |
210 | | - <comparisonVersion>1.1</comparisonVersion> |
211 | | - </configuration> |
212 | | - </plugin> |
213 | | - </plugins> |
| 179 | + <plugins> |
| 180 | + <plugin> |
| 181 | + <groupId>org.apache.maven.plugins</groupId> |
| 182 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 183 | + <configuration> |
| 184 | + <linksource>true</linksource> |
| 185 | + <links> |
| 186 | + <link>http://java.sun.com/javase/6/docs/api</link> |
| 187 | + </links> |
| 188 | + </configuration> |
| 189 | + </plugin> |
| 190 | + <plugin> |
| 191 | + <groupId>org.apache.maven.plugins</groupId> |
| 192 | + <artifactId>maven-changes-plugin</artifactId> |
| 193 | + <version>2.0</version> |
| 194 | + <configuration> |
| 195 | + <xmlPath>${basedir}/xdocs/changes.xml</xmlPath> |
| 196 | + <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate> |
| 197 | + </configuration> |
| 198 | + <reportSets> |
| 199 | + <reportSet> |
| 200 | + <reports> |
| 201 | + <report>changes-report</report> |
| 202 | + </reports> |
| 203 | + </reportSet> |
| 204 | + </reportSets> |
| 205 | + </plugin> |
| 206 | + <plugin> |
| 207 | + <groupId>org.apache.maven.plugins</groupId> |
| 208 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 209 | + <version>2.1</version> |
| 210 | + <configuration> |
| 211 | + <configLocation>src/conf/checkstyle.xml</configLocation> |
| 212 | + <enableRulesSummary>false</enableRulesSummary> |
| 213 | + </configuration> |
| 214 | + </plugin> |
| 215 | + <plugin> |
| 216 | + <groupId>org.codehaus.mojo</groupId> |
| 217 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 218 | + <version>1.2</version> |
| 219 | + <configuration> |
| 220 | + <threshold>Normal</threshold> |
| 221 | + <effort>Default</effort> |
| 222 | + </configuration> |
| 223 | + </plugin> |
| 224 | + <plugin> |
| 225 | + <groupId>org.codehaus.mojo</groupId> |
| 226 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 227 | + <version>2.2</version> |
| 228 | + </plugin> |
| 229 | + <plugin> |
| 230 | + <groupId>org.codehaus.mojo</groupId> |
| 231 | + <artifactId>clirr-maven-plugin</artifactId> |
| 232 | + <version>2.2.1</version> |
| 233 | + <configuration> |
| 234 | + <comparisonVersion>1.1</comparisonVersion> |
| 235 | + </configuration> |
| 236 | + </plugin> |
| 237 | + <plugin> |
| 238 | + <groupId>org.apache.maven.plugins</groupId> |
| 239 | + <artifactId>maven-pmd-plugin</artifactId> |
| 240 | + </plugin> |
| 241 | + </plugins> |
214 | 242 | </reporting> |
215 | 243 |
|
216 | | - |
217 | 244 | <profiles> |
218 | 245 | <!-- Profile to let Gump choose the name of the jar file generated --> |
219 | 246 | <profile> |
|
0 commit comments