Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.
Comentário: Migration of unmigrated content due to installation of a new plugin

...

Bloco de código
ProjectConfiguration configuration = JiraUtil.getGreenHopperService().getConfiguration(project);
Date versionStartDate = configuration.getVersionStartDate(versionJira);


//Mas ".getGreenHopperService()" não instancia..
Wiki Markup
{html}
   <table width="20%" align="center">
     <tr>
        <td>
          <img src="http://4.bp.blogspot.com/_yMOA6Ys0LxQ/TSR5uYyxLCI/AAAAAAAAADY/A_KyHtL4QsM/s1600/gargalhada.jpg" width="200px" heigth="400px"/>
        </td>
     </tr>
     <tr><td>
        <marquee orientation="right"><font face="verdana" style="color:darkgray">hahahahahaha ! ! !</font></marquee>
     </td></tr>
   </table>

{html}

Eis o que realmente funcionou:

...

Bloco de código
private IssueManager   issueManager =    ComponentManager.getComponentInstanceOfType(IssueManager.class);

private IssueFieldManager  issueFieldManager =  ComponentManager.getComponentInstanceOfType(IssueFieldManager.class);

MutableIssue mi = issueManager.getIssueObject("issueId"); //issueId ou issuekey

ProjectConfiguration configuration = new ProjectConfiguration(mi.getProjectObject(), issueFieldManager);

List<Version> version = new ArrayList<Version>(mi.getFixVersions());

Version uniqueVersion = version.get(0);

VersionWrapper versionW = new VersionWrapper(uniqueVersion);

System.out.println("end-date: [ "+configuration.getVersionEndDate(uniqueVersion)+" \]"); //util.Date

System.out.println("relese-date: [ "+versionW.getReleaseDate()+" \]"); //DateMidnight formato: "2012-06-28T00:00:00.000-03:00";
Wiki Markup
{html}
   <table width="20%" align="center">
     <tr>
        <td>
          <img src="http://rodaslivres.files.wordpress.com/2011/04/050-positivo1.jpg" width="200px" heigth="400px"/>
        </td>
     </tr>
     <tr><td>
         <marquee orientation="left"><font face="verdana" style="color:darkgray">thanks ! ! !</font></marquee>
     </td></tr>
   </table>

{html}