Package com.redhat.rcm.maven.plugin.buildmetadata.scm

Examples of com.redhat.rcm.maven.plugin.buildmetadata.scm.ScmNoRevisionException


        provideLocallyModifiedInfo(buildMetaDataProperties, revisionFetcher);
      }
    }
    else if (failOnMissingRevision)
    {
      throw new ScmNoRevisionException("Cannot fetch SCM revision. "
                                       + scmConnectionInfo);
    }
  }
View Full Code Here


                scmAccessInfo, scmInfo.getBuildDatePattern());
        helper.provideScmBuildInfo(buildMetaDataProperties, scmControl);
      }
      catch (final ScmRepositoryException e)
      {
        throw new ScmNoRevisionException(
"Unable to determine SCM revision information.", e );
      }
      catch (final NoSuchScmProviderException e)
      {
        throw new ScmNoRevisionException(
"Unable to determine SCM revision information.", e );
      }
    }
    else
    {
View Full Code Here

        provideLocallyModifiedInfo(buildMetaDataProperties, revisionFetcher);
      }
    }
    else if (failOnMissingRevision)
    {
      throw new ScmNoRevisionException("Cannot fetch SCM revision. "
                                       + scmConnectionInfo);
    }
  }
View Full Code Here

                scmAccessInfo, scmInfo.getBuildDatePattern());
        helper.provideScmBuildInfo(buildMetaDataProperties, scmControl);
      }
      catch (final ScmRepositoryException e)
      {
        throw new ScmNoRevisionException(
"Unable to determine SCM revision information.", e );
      }
      catch (final NoSuchScmProviderException e)
      {
        throw new ScmNoRevisionException(
"Unable to determine SCM revision information.", e );
      }
    }
    else
    {
View Full Code Here

TOP

Related Classes of com.redhat.rcm.maven.plugin.buildmetadata.scm.ScmNoRevisionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.