Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

License expired after installing GreenHopper

James Yu
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 20, 2013

Hello

After downloaded and installed GreenHopper onto our JIRA, the License status: Expired on 18/Aug/12 3:00pm. Our JIRA version was not now up-to-date at that time, and we did not have a chance to evaluate GreenHopper. We updated the JIRA version to the latest version. Can we reset the license expiration clock?

Thanks

James Yu

Sr. Software Engineering Manager

Xyratex International Inc

James_yu@xyratex.com

925 389 8881

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Ken McClean
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
May 4, 2023

It sounds like you're just looking to export the names of active users?  If so, it'd be far simpler to just fetch the list and paste it into Excel:


import com.atlassian.jira.component.ComponentAccessor

def userManager = ComponentAccessor.getUserManager()
def userBuffer = []

def users = userManager.getAllApplicationUsers()

users.each{user ->

   if(user.active == true){

    userBuffer.add(user.name + "<br>")

  }

}

userBuffer.toString()

    .replace(",", "")  

    .replace("[", "")  

    .replace("]", "")

    .trim();  


TAGS
AUG Leaders

Atlassian Community Events