[ https://issues.apache.org/jira/browse/SCM-833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17963325#comment-17963325 ]
ASF GitHub Bot commented on SCM-833: ------------------------------------ jira-importer commented on issue #1061: URL: https://github.com/apache/maven-scm/issues/1061#issuecomment-2964643373 **[Michael Osipov](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=michael-o)** commented [Karl Heinz Marbaise](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=khmarbaise), do you want to pursue this? > getLastChangedRevision() returns null whereas as getRevision() get correct > versions > ----------------------------------------------------------------------------------- > > Key: SCM-833 > URL: https://issues.apache.org/jira/browse/SCM-833 > Project: Maven SCM (Moved to GitHub Issues) > Issue Type: Bug > Components: maven-scm-api, maven-scm-provider-jgit > Affects Versions: 1.9.4, 1.9.5 > Reporter: Karl Heinz Marbaise > Priority: Minor > Fix For: waiting-for-feedback > > > Currently there is a method like this in the code (buildnumber-maven-plugin): > AbstractScmMojo.java: > {code:java} > protected String getScmRevision() > throws ScmException > { > ScmRepository repository = getScmRepository(); > InfoScmResult scmResult = info( repository, new ScmFileSet( > scmDirectory ) ); > if ( scmResult == null || scmResult.getInfoItems().isEmpty() ) > { > return ( !StringUtils.isEmpty( revisionOnScmFailure ) ) ? > revisionOnScmFailure : null; > } > checkResult( scmResult ); > InfoItem info = scmResult.getInfoItems().get( 0 ); > > List<InfoItem> infoItems = scmResult.getInfoItems(); > > for (InfoItem infoItem : infoItems) { > getLog().info("Item: " +infoItem.getRevision() + " lcr: " + > infoItem.getLastChangedRevision() ); > } > getLog().info("useLastCommittedRevision: " + > useLastCommittedRevision); > if ( useLastCommittedRevision ) > { > return info.getLastChangedRevision(); > } > return info.getRevision(); > } > {code} > The problem is simply that {{getLastChangedRevision()}} returns null whereas > {{getRevision()}} returns the requested value?... > So ATM I'm not sure if this is really a bug in SCM or a misusage in > buildnumber-maven-plugin ? -- This message was sent by Atlassian Jira (v8.20.10#820010)