Repository: logging-log4j-boot Updated Branches: refs/heads/master 3619ca0c2 -> 1d17d700e
Add maven-changes-plugin configuration This is set to generate a changes report based on "Boot" issues in JIRA. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j-boot/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j-boot/commit/97fa1d31 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-boot/tree/97fa1d31 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-boot/diff/97fa1d31 Branch: refs/heads/master Commit: 97fa1d31c4f4e2373637b3f69238e9719c74cf6d Parents: 3619ca0 Author: Matt Sicker <[email protected]> Authored: Sat Jan 14 20:18:28 2017 -0600 Committer: Matt Sicker <[email protected]> Committed: Sat Jan 14 20:18:28 2017 -0600 ---------------------------------------------------------------------- pom.xml | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j-boot/blob/97fa1d31/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ea5cd77..ee53030 100644 --- a/pom.xml +++ b/pom.xml @@ -129,4 +129,51 @@ </mailingList> </mailingLists> + <issueManagement> + <system>JIRA</system> + <url>https://issues.apache.org/jira/browse/LOG4J2</url> + </issueManagement> + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <version>3.6</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changes-plugin</artifactId> + <version>2.12.1</version> + </plugin> + </plugins> + </pluginManagement> + </build> + + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changes-plugin</artifactId> + <version>2.12.1</version> + <reportSets> + <reportSet> + <reports> + <report>jira-report</report> + </reports> + </reportSet> + </reportSets> + <configuration> + <useJql>true</useJql> + <filter>project = LOG4J2 AND component = Boot AND status in (Resolved, Closed)</filter> + <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> + <issueManagementSystems> + <issueManagementSystem>JIRA</issueManagementSystem> + </issueManagementSystems> + </configuration> + </plugin> + </plugins> + </reporting> + </project> \ No newline at end of file
