File tree Expand file tree Collapse file tree 1 file changed +18
-13
lines changed
Expand file tree Collapse file tree 1 file changed +18
-13
lines changed Original file line number Diff line number Diff line change @@ -156,19 +156,24 @@ project.afterEvaluate {
156156 }
157157 }
158158
159- if (BuildUtils . shouldPublish(project))
160- {
161- project. artifactoryPublish {
162- project. tasks. each {
163- if (it instanceof Jar )
164- {
165- dependsOn it
166- }
167- }
168- // dependsOn pomFileTask
169- publications(' libs' )
170- }
171- }
159+ // Comment this out for now as we don't need to publish snapshot versions of the remoteapi jar file all the time since
160+ // we are referencing the release version in our builds and this code changes infrequently. Without a modification
161+ // to this file. this publishing fails when the LabKey version is a release version because the repository set for
162+ // publishing is a release repository, but the version set in this file will be a SNAPSHOT version. Could probalby be fixed
163+ // with some configuration work, but it will be easier once this is moved to its own git repository.
164+ // if (BuildUtils.shouldPublish(project))
165+ // {
166+ // project.artifactoryPublish {
167+ // project.tasks.each {
168+ // if (it instanceof Jar)
169+ // {
170+ // dependsOn it
171+ // }
172+ // }
173+ // // dependsOn pomFileTask
174+ // publications('libs')
175+ // }
176+ // }
172177
173178 }
174179 project. model {
You can’t perform that action at this time.
0 commit comments