You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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."
18
-
def orgUrl ="http://www.labkey.org"
19
14
20
15
group "org.labkey.api"
21
16
//Issue #39336 (comment 4): Updating to use SNAPSHOT until migration to git
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."
112
+
def orgUrl ="http://www.labkey.org"
150
113
151
114
project.afterEvaluate {
152
-
Task pomFileTask = project.task("pomFile",
153
-
group: GroupNames.PUBLISHING,
154
-
description: "create the pom file for this project",
155
-
type: PomFile,
156
-
{
157
-
PomFile pom ->
158
-
pom.pomProperties = pomProperties
159
-
}
160
-
)
161
115
project.publishing {
162
116
publications {
163
117
libs(MavenPublication) {
118
+
groupId = project.group
164
119
from components.java
165
-
pom.withXml {
166
-
asNode().appendNode('url', orgUrl)
167
-
asNode().appendNode('name', artifactPrefix)
168
-
asNode().appendNode('description', description)
169
-
asNode().children().last() + pomConfig
120
+
artifactId = artifactPrefix
121
+
versionMapping {
122
+
usage('java-api') {
123
+
fromResolutionOf('runtimeClasspath')
124
+
}
125
+
usage('java-runtime') {
126
+
fromResolutionResult()
127
+
}
170
128
}
129
+
pom {
130
+
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."
0 commit comments