Skip to content

Commit 0fcf6c7

Browse files
committed
merge from release20.4-SNAPSHOT (through 65321)
SVN r65335 |2020-04-08 18:21:25 +0000
1 parent 9a05d20 commit 0fcf6c7

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

java/build.gradle

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ project.artifacts {
108108
archives project.tasks.fatJar
109109
}
110110

111-
def description = "The client-side library for Java developers is a separate JAR from the LabKey Server code base. It can be used by any Java program, including another Java web application."
111+
def libDescription = "The client-side library for Java developers is a separate JAR from the LabKey Server code base. It can be used by any Java program, including another Java web application."
112112
def orgUrl = "http://www.labkey.org"
113113

114114
project.afterEvaluate {
@@ -128,7 +128,16 @@ project.afterEvaluate {
128128
}
129129
pom {
130130
name = "LabKey Server Java Client API"
131-
description = "The client-side library for Java developers is a separate JAR from the LabKey Server code base. It can be used by any Java program, including another Java web application."
131+
description = libDescription
132+
url = orgUrl
133+
developers {
134+
developer {
135+
id = 'lakbkey-team'
136+
name = 'The LabKey Development Team'
137+
organization = 'LabKey.org'
138+
organizationUrl = 'http://www.labkey.org'
139+
}
140+
}
132141
licenses {
133142
license {
134143
name = 'The Apache License, Version 2.0'
@@ -198,7 +207,7 @@ if (project.hasProperty('bintray_user')
198207
publish = true
199208
pkg {
200209
repo = project.version.endsWith('SNAPSHOT') ? 'libs-snapshot' : 'libs-release'
201-
desc = description
210+
desc = libDescription
202211
websiteUrl = orgUrl
203212
name = artifactPrefix
204213
userOrg = 'labkey'

0 commit comments

Comments
 (0)