The Apache Maven SCM Provider Impl is based on svnkit and so use Java process to run svn subversion operations instead of forking a command line as the default Apache Maven SCM svn implementation

Check releases

<dependency>
  <groupId>com.google.code.maven-scm-provider-svnjava</groupId>
  <artifactId>maven-scm-provider-svnjava</artifactId>
  <version>2.2.2-SNAPSHOT</version>
</dependency>

You can use snapshot build of the project by adding the repository:

  <repositories>
    <repository>
      <id>oss.sonatype.snapshots</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>

Requirements: JDK 1.8+, Maven 3.6.3+

git clone https://github.com/olamy/maven-scm-provider-svnjava.git
cd maven-scm-provider-svnjava
mvn install

Back to top

Reflow Maven skin maintained by Olivier Lamy.