Repository: maven-scm Updated Branches: refs/heads/master 7b7bc090c -> cd151e807
[SCM-808] JGit impl should be included in standard providers Project: http://git-wip-us.apache.org/repos/asf/maven-scm/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-scm/commit/cd151e80 Tree: http://git-wip-us.apache.org/repos/asf/maven-scm/tree/cd151e80 Diff: http://git-wip-us.apache.org/repos/asf/maven-scm/diff/cd151e80 Branch: refs/heads/master Commit: cd151e8079da3029e2a43a6eac96d56e4e9a474c Parents: 7b7bc09 Author: rfscholte <[email protected]> Authored: Mon May 30 23:19:55 2016 +0200 Committer: rfscholte <[email protected]> Committed: Mon May 30 23:19:55 2016 +0200 ---------------------------------------------------------------------- maven-scm-providers/maven-scm-providers-standard/pom.xml | 7 +++++++ pom.xml | 5 +++++ 2 files changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-scm/blob/cd151e80/maven-scm-providers/maven-scm-providers-standard/pom.xml ---------------------------------------------------------------------- diff --git a/maven-scm-providers/maven-scm-providers-standard/pom.xml b/maven-scm-providers/maven-scm-providers-standard/pom.xml index 5a54438..2e0fde7 100644 --- a/maven-scm-providers/maven-scm-providers-standard/pom.xml +++ b/maven-scm-providers/maven-scm-providers-standard/pom.xml @@ -49,6 +49,7 @@ <artifactId>maven-scm-provider-clearcase</artifactId> <scope>runtime</scope> </dependency> + <!-- CVS --> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-cvsexe</artifactId> @@ -59,6 +60,7 @@ <artifactId>maven-scm-provider-cvsjava</artifactId> <scope>runtime</scope> </dependency> + <!-- GIT --> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> @@ -66,6 +68,11 @@ </dependency> <dependency> <groupId>org.apache.maven.scm</groupId> + <artifactId>maven-scm-provider-jgit</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-hg</artifactId> <scope>runtime</scope> </dependency> http://git-wip-us.apache.org/repos/asf/maven-scm/blob/cd151e80/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c5821ca..232ba8b 100644 --- a/pom.xml +++ b/pom.xml @@ -195,6 +195,11 @@ </dependency> <dependency> <groupId>org.apache.maven.scm</groupId> + <artifactId>maven-scm-provider-jgit</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-hg</artifactId> <version>${project.version}</version> </dependency>
