Skip to content

Commit ef01e5b

Browse files
committed
Fixed #129
1 parent 0635eaa commit ef01e5b

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

pom.xml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
<xml-maven-plugin.version>1.0.2</xml-maven-plugin.version>
8080
<dependency-management-plugin.version>1.0.9.RELEASE</dependency-management-plugin.version>
8181
<git-commit-id-plugin.version>3.0.1</git-commit-id-plugin.version>
82+
<maven-changes-plugin.version>2.12.1</maven-changes-plugin.version>
8283

8384
<thymeleaf.version>3.0.11.RELEASE</thymeleaf.version>
8485
<thymeleaf-extras-data-attribute.version>2.0.1</thymeleaf-extras-data-attribute.version>
@@ -328,6 +329,12 @@
328329
<version>${maven-surefire-report-plugin.version}</version>
329330
<type>maven-plugin</type>
330331
</dependency>
332+
<dependency>
333+
<groupId>org.apache.maven.plugins</groupId>
334+
<artifactId>maven-changes-plugin</artifactId>
335+
<version>${maven-changes-plugin.version}</version>
336+
<type>maven-plugin</type>
337+
</dependency>
331338
</dependencies>
332339
</dependencyManagement>
333340

@@ -543,6 +550,11 @@
543550
<artifactId>maven-surefire-report-plugin</artifactId>
544551
<type>maven-plugin</type>
545552
</dependency>
553+
<dependency>
554+
<groupId>org.apache.maven.plugins</groupId>
555+
<artifactId>maven-changes-plugin</artifactId>
556+
<type>maven-plugin</type>
557+
</dependency>
546558
</dependencies>
547559

548560
<build>
@@ -565,6 +577,11 @@
565577
<artifactId>maven-project-info-reports-plugin</artifactId>
566578
<version>${maven-project-info-reports-plugin.version}</version>
567579
</plugin>
580+
<plugin>
581+
<groupId>org.apache.maven.plugins</groupId>
582+
<artifactId>maven-changes-plugin</artifactId>
583+
<version>${maven-changes-plugin.version}</version>
584+
</plugin>
568585
<plugin>
569586
<groupId>org.apache.maven.plugins</groupId>
570587
<artifactId>maven-jxr-plugin</artifactId>
@@ -925,6 +942,22 @@
925942
<artifactId>maven-dependency-plugin</artifactId>
926943
<inherited>true</inherited>
927944
</plugin>
945+
<plugin>
946+
<groupId>org.apache.maven.plugins</groupId>
947+
<artifactId>maven-changes-plugin</artifactId>
948+
<configuration>
949+
<githubAPIScheme>https</githubAPIScheme>
950+
<githubAPIPort>443</githubAPIPort>
951+
</configuration>
952+
<reportSets>
953+
<reportSet>
954+
<id>id-github-report</id>
955+
<reports>
956+
<report>github-report</report>
957+
</reports>
958+
</reportSet>
959+
</reportSets>
960+
</plugin>
928961
<plugin>
929962
<groupId>org.apache.maven.plugins</groupId>
930963
<artifactId>maven-source-plugin</artifactId>

0 commit comments

Comments
 (0)