本文整理汇总了Java中org.apache.maven.scm.repository.ScmRepositoryException类的典型用法代码示例。如果您正苦于以下问题:Java ScmRepositoryException类的具体用法?Java ScmRepositoryException怎么用?Java ScmRepositoryException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ScmRepositoryException类属于org.apache.maven.scm.repository包,在下文中一共展示了ScmRepositoryException类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testIllegalUrl
import org.apache.maven.scm.repository.ScmRepositoryException; //导入依赖的package包/类
private void testIllegalUrl( String url )
throws Exception
{
try
{
scmManager.makeScmRepository( "scm:javasvn:" + url );
fail( "Expected a ScmRepositoryException while testing the url '" + url + "'." );
}
catch ( ScmRepositoryException e )
{
// Success
assertTrue( true );
}
}
示例2: loadConnectionInfo
import org.apache.maven.scm.repository.ScmRepositoryException; //导入依赖的package包/类
/**
* Load user name password from settings if user has not set them via JVM
* properties.
*
* @return the connection information to connect to the SCM system.
* @throws IllegalStateException if the connection string to the SCM cannot be
* fetched.
* @throws ScmRepositoryException if the repository information is not
* sufficient to build the repository instance.
* @throws NoSuchScmProviderException if there is no provider for the SCM
* connection URL.
*/
private ScmConnectionInfo loadConnectionInfo() throws IllegalStateException,
ScmRepositoryException, NoSuchScmProviderException
{
final String scmConnection = getConnection();
final ScmCredentials credentials = scmInfo.getScmCrendentials();
if (credentials.getUserName() == null || credentials.getPassword() == null)
{
final ScmRepository repository =
scmInfo.getScmManager().makeScmRepository(scmConnection);
if (repository.getProviderRepository() instanceof ScmProviderRepositoryWithHost)
{
final ScmProviderRepositoryWithHost repositoryWithHost =
(ScmProviderRepositoryWithHost) repository.getProviderRepository();
final String host = createHostName(repositoryWithHost);
credentials.configureByServer(host);
}
}
final ScmConnectionInfo info = new ScmConnectionInfo();
info.setUserName(credentials.getUserName());
info.setPassword(credentials.getPassword());
info.setPrivateKey(credentials.getPrivateKey());
info.setScmConnectionUrl(scmConnection);
info.setTagBase(scmInfo.getTagBase());
info.setRemoteVersion(scmInfo.getRemoteVersion());
return info;
}