Skip to content

Commit 589bd83

Browse files
committed
Changed jgit integration
1 parent db3800d commit 589bd83

File tree

1 file changed

+29
-11
lines changed

1 file changed

+29
-11
lines changed

pom.xml

Lines changed: 29 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,18 @@
125125
<netbeans.version>RELEASE120</netbeans.version>
126126
<jsoup.version>1.21.2</jsoup.version>
127127
<pmd.version>7.17.0</pmd.version>
128+
<scm.version>2.2.1</scm.version>
128129
<argLine></argLine>
129130
</properties>
130131

132+
<extensions>
133+
<extension>
134+
<groupId>org.apache.maven.scm</groupId>
135+
<artifactId>maven-scm-provider-jgit</artifactId>
136+
<version>${scm.version}</version>
137+
</extension>
138+
</extensions>
139+
131140
<dependencies>
132141
<!-- Eclipse Formatter -->
133142
<dependency>
@@ -513,25 +522,25 @@
513522
<dependency>
514523
<groupId>org.apache.maven.scm</groupId>
515524
<artifactId>maven-scm-api</artifactId>
516-
<version>2.2.1</version>
525+
<version>${scm.version}</version>
517526
</dependency>
518527

519528
<dependency>
520529
<groupId>org.apache.maven.scm</groupId>
521530
<artifactId>maven-scm-provider-gitexe</artifactId>
522-
<version>2.2.1</version>
531+
<version>${scm.version}</version>
523532
</dependency>
524533

525534
<dependency>
526535
<groupId>org.apache.maven.scm</groupId>
527536
<artifactId>maven-scm-provider-git-commons</artifactId>
528-
<version>2.2.1</version>
537+
<version>${scm.version}</version>
529538
</dependency>
530539

531540
<dependency>
532541
<groupId>org.apache.maven.scm</groupId>
533542
<artifactId>maven-scm-provider-jgit</artifactId>
534-
<version>2.2.1</version>
543+
<version>${scm.version}</version>
535544
</dependency>
536545

537546
<!-- Google -->
@@ -718,13 +727,6 @@
718727
<groupId>org.apache.maven.plugins</groupId>
719728
<artifactId>maven-changelog-plugin</artifactId>
720729
<version>3.0.0-M1</version>
721-
<dependencies>
722-
<dependency>
723-
<groupId>org.apache.maven.scm</groupId>
724-
<artifactId>maven-scm-provider-jgit</artifactId>
725-
<version>2.2.1</version>
726-
</dependency>
727-
</dependencies>
728730
</plugin>
729731
<plugin>
730732
<groupId>org.codehaus.mojo</groupId>
@@ -997,6 +999,17 @@
997999
<groupId>org.codehaus.mojo</groupId>
9981000
<artifactId>license-maven-plugin</artifactId>
9991001
</plugin>
1002+
<plugin>
1003+
<groupId>org.apache.maven.plugins</groupId>
1004+
<artifactId>maven-changelog-plugin</artifactId>
1005+
<dependencies>
1006+
<dependency>
1007+
<groupId>org.apache.maven.scm</groupId>
1008+
<artifactId>maven-scm-provider-jgit</artifactId>
1009+
<version>${scm.version}</version>
1010+
</dependency>
1011+
</dependencies>
1012+
</plugin>
10001013
<plugin>
10011014
<groupId>org.apache.maven.plugins</groupId>
10021015
<artifactId>maven-dependency-plugin</artifactId>
@@ -1072,6 +1085,11 @@
10721085
<plugin>
10731086
<groupId>org.apache.maven.plugins</groupId>
10741087
<artifactId>maven-changelog-plugin</artifactId>
1088+
<configuration>
1089+
<providerImplementations>
1090+
<svn>jgit</svn>
1091+
</providerImplementations>
1092+
</configuration>
10751093
</plugin>
10761094
<plugin>
10771095
<groupId>org.jacoco</groupId>

0 commit comments

Comments
 (0)