From: Carcassi, G. <car...@bn...> - 2012-08-03 21:25:25
|
Hi all, Let's finish the week with something cool! Check this out: http://channelfinder.sourceforge.net/ChannelFinder/jira-report.html It's generated automatically by looking at the JIRA Closed issues (Resolved is not Closed, btw... you need to close issues). It shows only the Service issues. We could have all of the CF issues in one (Java api, css, ...) or split it up in the different maven projects. As you prefer. All it took was adding this to the Channel Finder Server pom.xml in the reporting sections: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.7.1</version> <configuration> <columnNames>Fix Version,Priority,Type,Summary,Assignee,Key,Status,Resolution</columnNames> <sortColumnNames>Fix Version,Priority,Key DESC</sortColumnNames> <component>Service</component> </configuration> <reportSets> <reportSet> <reports> <report>jira-report</report> </reports> </reportSet> </reportSets> </plugin> That's because someone already had added the previous required section: <issueManagement> <system>JIRA</system> <url>http://java.net/jira/browse/CHANNELFINDER/component/14299</url> </issueManagement> You can easily add it to your maven projects (thus showing the awesomeness of maven... and compensating for the aggravation that sometimes causes ;-) ). I've added this to pvManager too, though I need to actually fill in some issues... :-) Have a good week-end! Gabriele |