Skip to content

Instantly share code, notes, and snippets.

@sebersole
Created April 5, 2013 22:11
Show Gist options
  • Save sebersole/5323063 to your computer and use it in GitHub Desktop.
Save sebersole/5323063 to your computer and use it in GitHub Desktop.
pom.withXml {
def root = asNode();
root.appendNode( 'url', 'http://hibernate.org' )
def org = root.appendNode( 'organization' )
org.appendNode( 'name', 'Hibernate.org' )
org.appendNode( 'url', 'http://hibernate.org' )
def jira = root.appendNode( 'issueManagement' )
jira.appendNode( 'system', 'jira' )
jira.appendNode( 'url', 'https://hibernate.atlassian.net/browse/HHH' )
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment