merge with branch 1.x

This commit is contained in:
Sebastian Sdorra
2017-01-13 22:47:54 +01:00
15 changed files with 564 additions and 18 deletions

View File

@@ -40,7 +40,9 @@ import java.io.File;
/**
*
* @author Sebastian Sdorra
* @deprecated
*/
@Deprecated
public abstract class AbstractRepositoryClient implements RepositoryClient
{

View File

@@ -82,7 +82,9 @@ import java.util.List;
/**
*
* @author Sebastian Sdorra
* @deprecated
*/
@Deprecated
public class GitRepositoryClient extends AbstractRepositoryClient
{

View File

@@ -47,7 +47,9 @@ import java.io.IOException;
/**
*
* @author Sebastian Sdorra
* @deprecated
*/
@Deprecated
public class HgRepositoryClient extends AbstractRepositoryClient
{

View File

@@ -40,7 +40,9 @@ import java.io.File;
/**
*
* @author Sebastian Sdorra
* @deprecated use {@link sonia.scm.repository.client.api.RepositoryClient}
*/
@Deprecated
public interface RepositoryClient
{

View File

@@ -36,7 +36,9 @@ package sonia.scm.repository.client;
/**
*
* @author Sebastian Sdorra
* @deprecated
*/
@Deprecated
public class RepositoryClientException extends Exception
{

View File

@@ -40,7 +40,9 @@ import java.io.File;
/**
*
* @author Sebastian Sdorra
* @deprecated use {@link sonia.scm.repository.client.api.RepositoryClientFactory}
*/
@Deprecated
public final class RepositoryClientFactory
{

View File

@@ -59,7 +59,10 @@ import org.tmatesoft.svn.core.internal.util.SVNURLUtil;
/**
*
* @author Sebastian Sdorra
*
* @deprecated
*/
@Deprecated
public class SvnRepositoryClient extends AbstractRepositoryClient
{