Update to CP24
Restore changes/JIRA reports accidentally dropped when tidying pom git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1306268 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f0e1231764
commit
faca098140
33
pom.xml
33
pom.xml
|
@ -19,7 +19,7 @@
|
|||
<parent>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-parent</artifactId>
|
||||
<version>23</version>
|
||||
<version>24</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
|
@ -344,6 +344,37 @@
|
|||
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-changes-plugin</artifactId>
|
||||
<version>${commons.changes.version}</version>
|
||||
<configuration>
|
||||
<issueLinkTemplatePerSystem>
|
||||
<default>%URL%/%ISSUE%</default>
|
||||
</issueLinkTemplatePerSystem>
|
||||
<!-- Add sample JIRA report - 'mvn changes:jira-report' or 'mvn site' -->
|
||||
<onlyCurrentVersion>false</onlyCurrentVersion>
|
||||
<columnNames>Fix Version,Key,Summary,Type,Resolution,Status</columnNames>
|
||||
<!-- Sort cols have to be reversed in JIRA 4 -->
|
||||
<sortColumnNames>Key DESC,Type,Fix Version DESC</sortColumnNames>
|
||||
<resolutionIds>Fixed</resolutionIds>
|
||||
<statusIds>Resolved,Closed</statusIds>
|
||||
<!-- Don't include sub-task -->
|
||||
<typeIds>Bug,New Feature,Task,Improvement,Wish,Test</typeIds>
|
||||
<fixVersionIds>${commons.release.version}</fixVersionIds>
|
||||
<!-- The default is 100 -->
|
||||
<maxEntries>100</maxEntries>
|
||||
</configuration>
|
||||
<reportSets>
|
||||
<reportSet>
|
||||
<reports>
|
||||
<report>changes-report</report>
|
||||
<report>jira-report</report>
|
||||
</reports>
|
||||
</reportSet>
|
||||
</reportSets>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
|
|
Loading…
Reference in New Issue