Add maven-changes-plugin configuration

This is set to generate a changes report based on "Boot" issues in JIRA.
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