本文整理汇总了Java中org.apache.maven.scm.manager.NoSuchScmProviderException类的典型用法代码示例。如果您正苦于以下问题:Java NoSuchScmProviderException类的具体用法?Java NoSuchScmProviderException怎么用?Java NoSuchScmProviderException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
NoSuchScmProviderException类属于org.apache.maven.scm.manager包,在下文中一共展示了NoSuchScmProviderException类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: loadConnectionInfo
import org.apache.maven.scm.manager.NoSuchScmProviderException; //导入依赖的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;
}
开发者ID:release-engineering,项目名称:buildmetadata-maven-plugin,代码行数:40,代码来源:ScmMetaDataProvider.java
示例2: createScmProvider
import org.apache.maven.scm.manager.NoSuchScmProviderException; //导入依赖的package包/类
/**
* Creates the provider instance to access the given repository.
*
* @param repository the repository to access with the provider to be created.
* @return the provider to access the given repository.
* @throws ScmException if the provider cannot be created.
*/
private ScmProvider createScmProvider(final ScmRepository repository)
throws ScmException
{
try
{
final ScmProvider provider =
scmManager.getProviderByRepository(repository);
return provider;
}
catch (final NoSuchScmProviderException e)
{
throw new ScmException("Cannot create SCM provider.", e);
}
}
开发者ID:release-engineering,项目名称:buildmetadata-maven-plugin,代码行数:22,代码来源:MavenScmRevisionNumberFetcher.java
注:本文中的org.apache.maven.scm.manager.NoSuchScmProviderException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论