Skip to content

Commit 596b291

Browse files
committed
Update Maven metadata for publishing 1.7.14.1
1 parent 0ff0bbe commit 596b291

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

build.gradle

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ publishing {
302302
pom.withXml {
303303
def root = asNode()
304304

305+
root.appendNode('name', 'rhino')
305306
root.appendNode('description', """
306307
Rhino is an open-source implementation of JavaScript written entirely in Java.
307308
It is typically embedded into Java applications to provide scripting to end users.
@@ -327,6 +328,10 @@ publishing {
327328
o.appendNode("name", "The Mozilla Foundation")
328329
o.appendNode("url", "http://www.mozilla.org")
329330

331+
def d = root.appendNode("developers")
332+
def dd = d.appendNode("developer")
333+
dd.appendNode("name", "Greg Brail")
334+
dd.appendNode("email", "gbrail@users.noreply.github.com")
330335
}
331336
}
332337

@@ -338,6 +343,7 @@ publishing {
338343
pom.withXml {
339344
def root = asNode()
340345

346+
root.appendNode('name', 'rhino-runtime')
341347
root.appendNode('description', """
342348
Rhino JavaScript runtime jar, excludes tools & JSR-223 Script Engine wrapper.
343349
""")
@@ -360,6 +366,11 @@ publishing {
360366
def o = root.appendNode("organization")
361367
o.appendNode("name", "The Mozilla Foundation")
362368
o.appendNode("url", "http://www.mozilla.org")
369+
370+
def d = root.appendNode("developers")
371+
def dd = d.appendNode("developer")
372+
dd.appendNode("name", "Greg Brail")
373+
dd.appendNode("email", "gbrail@users.noreply.github.com")
363374
}
364375
}
365376

@@ -371,6 +382,7 @@ publishing {
371382
pom.withXml {
372383
def root = asNode()
373384

385+
root.appendNode('name', 'rhino-engine')
374386
root.appendNode('description', """
375387
Rhino Javascript JSR-223 Script Engine wrapper.
376388
""")
@@ -399,6 +411,11 @@ publishing {
399411
rhino.appendNode("groupId", "org.mozilla")
400412
rhino.appendNode("artifactId", "rhino")
401413
rhino.appendNode("version", getVersion())
414+
415+
def d = root.appendNode("developers")
416+
def dd = d.appendNode("developer")
417+
dd.appendNode("name", "Greg Brail")
418+
dd.appendNode("email", "gbrail@users.noreply.github.com")
402419
}
403420
}
404421
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rootProject.name=rhino
22
group=org.mozilla
3-
version=1.7.14.1-SNAPSHOT
3+
version=1.7.14.1
44
buildDir=buildGradle
55
mavenSnapshotRepo=https://oss.sonatype.org/content/repositories/snapshots
66
mavenReleaseRepo=https://oss.sonatype.org/service/local/staging/deploy/maven2/

0 commit comments

Comments
 (0)