private Collection releases()

in src/main/java/org/apache/sling/cli/impl/release/CreateJiraVersionCommand.java [133:139]


    private Collection<Release> releases() throws IOException {
        if ( jiraVersionName != null )
            return Release.fromString(jiraVersionName);
        
        StagingRepository repo = repositoryService.find(repositoryId);
        return repositoryService.getReleases(repo);
    }