Skip to content

Commit 14524b3

Browse files
committed
Update Maven information for release 1.7.15.1
1 parent b333c3e commit 14524b3

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

build.gradle

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

307+
root.appendNode('name', 'rhino')
307308
root.appendNode('description', """
308309
Rhino is an open-source implementation of JavaScript written entirely in Java.
309310
It is typically embedded into Java applications to provide scripting to end users.
@@ -329,6 +330,10 @@ publishing {
329330
o.appendNode("name", "The Mozilla Foundation")
330331
o.appendNode("url", "http://www.mozilla.org")
331332

333+
def d = root.appendNode("developers")
334+
def dd = d.appendNode("developer")
335+
dd.appendNode("name", "Greg Brail")
336+
dd.appendNode("email", "gbrail@users.noreply.github.com")
332337
}
333338
}
334339

@@ -340,6 +345,7 @@ publishing {
340345
pom.withXml {
341346
def root = asNode()
342347

348+
root.appendNode('name', 'rhino-runtime')
343349
root.appendNode('description', """
344350
Rhino JavaScript runtime jar, excludes tools & JSR-223 Script Engine wrapper.
345351
""")
@@ -362,6 +368,11 @@ publishing {
362368
def o = root.appendNode("organization")
363369
o.appendNode("name", "The Mozilla Foundation")
364370
o.appendNode("url", "http://www.mozilla.org")
371+
372+
def d = root.appendNode("developers")
373+
def dd = d.appendNode("developer")
374+
dd.appendNode("name", "Greg Brail")
375+
dd.appendNode("email", "gbrail@users.noreply.github.com")
365376
}
366377
}
367378

@@ -373,6 +384,7 @@ publishing {
373384
pom.withXml {
374385
def root = asNode()
375386

387+
root.appendNode('name', 'rhino-engine')
376388
root.appendNode('description', """
377389
Rhino Javascript JSR-223 Script Engine wrapper.
378390
""")
@@ -401,6 +413,11 @@ publishing {
401413
rhino.appendNode("groupId", "org.mozilla")
402414
rhino.appendNode("artifactId", "rhino")
403415
rhino.appendNode("version", getVersion())
416+
417+
def d = root.appendNode("developers")
418+
def dd = d.appendNode("developer")
419+
dd.appendNode("name", "Greg Brail")
420+
dd.appendNode("email", "gbrail@users.noreply.github.com")
404421
}
405422
}
406423
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
rootProject.name=rhino
22
group=org.mozilla
3-
version=1.7.15.1-SNAPSHOT
3+
version=1.7.15.1
44
buildDir=buildGradle
55
mavenSnapshotRepo=https://oss.sonatype.org/content/repositories/snapshots
66
mavenReleaseRepo=https://oss.sonatype.org/service/local/staging/deploy/maven2/
77
org.gradle.caching=true
8-
org.gradle.parallel=true
8+
org.gradle.parallel=true

0 commit comments

Comments
 (0)