-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds back developer to release gradle blocks
- Loading branch information
Showing
4 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,8 +119,8 @@ publishing { | |
|
||
pom.withXml { | ||
def root = asNode() | ||
root.appendNode("name", "neo4j-apoc-procedure") | ||
root.appendNode("description", "A collection of useful Neo4j Procedures") | ||
root.appendNode("name", "neo4j-apoc-procedure-common") | ||
root.appendNode("description", "Data types package for Neo4j Procedures") | ||
root.appendNode("url", "http://github.com/neo4j-contrib/neo4j-apoc-procedures") | ||
|
||
def scmNode = root.appendNode("scm") | ||
|
@@ -133,6 +133,12 @@ publishing { | |
licenseNode.appendNode("comments", 'Note that this license is for the project itself, and not for its dependencies.') | ||
licenseNode.appendNode("distribution", 'repo') | ||
|
||
def developersNode = root.appendNode("developers") | ||
def developerNode = developersNode.appendNode("developer") | ||
developerNode.appendNode("id", 'michaelhunger') | ||
developerNode.appendNode("name", 'Michael Hunger') | ||
developerNode.appendNode("email", '[email protected]') | ||
|
||
def dependenciesNode = root.get("dependencies")[0] | ||
if (dependenciesNode == null) { | ||
dependenciesNode = root.appendNode("dependencies") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,7 +116,7 @@ publishing { | |
pom.withXml { | ||
def root = asNode() | ||
root.appendNode("name", "neo4j-apoc-core") | ||
root.appendNode("description", "A collection of useful Neo4j Procedures, core package") | ||
root.appendNode("description", "Core package for Neo4j Procedures") | ||
root.appendNode("url", "http://github.com/neo4j/apoc") | ||
|
||
def scmNode = root.appendNode("scm") | ||
|
@@ -129,6 +129,12 @@ publishing { | |
licenseNode.appendNode("comments", 'Note that this license is for the project itself, and not for its dependencies.') | ||
licenseNode.appendNode("distribution", 'repo') | ||
|
||
def developersNode = root.appendNode("developers") | ||
def developerNode = developersNode.appendNode("developer") | ||
developerNode.appendNode("id", 'michaelhunger') | ||
developerNode.appendNode("name", 'Michael Hunger') | ||
developerNode.appendNode("email", '[email protected]') | ||
|
||
def dependenciesNode = root.get("dependencies")[0] | ||
|
||
if (dependenciesNode != null) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,12 @@ publishing { | |
licenseNode.appendNode("comments", 'Note that this license is for the project itself, and not for its dependencies.') | ||
licenseNode.appendNode("distribution", 'repo') | ||
|
||
def developersNode = root.appendNode("developers") | ||
def developerNode = developersNode.appendNode("developer") | ||
developerNode.appendNode("id", 'michaelhunger') | ||
developerNode.appendNode("name", 'Michael Hunger') | ||
developerNode.appendNode("email", '[email protected]') | ||
|
||
def dependenciesNode = root.get("dependencies")[0] | ||
if (dependenciesNode == null) { | ||
dependenciesNode = root.appendNode("dependencies") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,8 +60,8 @@ publishing { | |
|
||
pom.withXml { | ||
def root = asNode() | ||
root.appendNode("name", "neo4j-apoc-core") | ||
root.appendNode("description", "A collection of useful Neo4j Procedures, core package") | ||
root.appendNode("name", "neo4j-apoc-test-utils") | ||
root.appendNode("description", "Test utils for Neo4j Procedures") | ||
root.appendNode("url", "http://github.com/neo4j/apoc") | ||
|
||
def scmNode = root.appendNode("scm") | ||
|
@@ -74,6 +74,12 @@ publishing { | |
licenseNode.appendNode("comments", 'Note that this license is for the project itself, and not for its dependencies.') | ||
licenseNode.appendNode("distribution", 'repo') | ||
|
||
def developersNode = root.appendNode("developers") | ||
def developerNode = developersNode.appendNode("developer") | ||
developerNode.appendNode("id", 'michaelhunger') | ||
developerNode.appendNode("name", 'Michael Hunger') | ||
developerNode.appendNode("email", '[email protected]') | ||
|
||
def dependenciesNode = root.get("dependencies")[0] | ||
if (dependenciesNode == null) { | ||
dependenciesNode = root.appendNode("dependencies") | ||
|