@@ -254,6 +254,16 @@ configure(subprojects - project(":spring-build-src")) { subproject ->
254
254
logging. captureStandardOutput LogLevel . INFO // suppress "## warnings" message
255
255
}
256
256
257
+ uploadArchives {
258
+ repositories {
259
+ mavenDeployer {
260
+ repository(url : " http://artifactory.cg.ru/artifactory/libs-releases-local" ) {
261
+ authentication(userName : " ${ artifactory_user} " , password : " ${ artifactory_password} " )
262
+ }
263
+ }
264
+ }
265
+ }
266
+
257
267
task sourcesJar(type : Jar , dependsOn : classes) {
258
268
classifier = ' sources'
259
269
from sourceSets. main. allSource
@@ -400,6 +410,7 @@ project("spring-beans-groovy") {
400
410
401
411
// this module's Java and Groovy sources need to be compiled together
402
412
compileJava. enabled= false
413
+ uploadArchives. enabled = false
403
414
sourceSets {
404
415
main {
405
416
groovy {
@@ -774,6 +785,7 @@ project("spring-orm") {
774
785
project(" spring-orm-hibernate4" ) {
775
786
description = " Spring Object/Relational Mapping - Hibernate 4 support"
776
787
merge. into = project(" :spring-orm" )
788
+ uploadArchives. enabled = false
777
789
778
790
dependencies {
779
791
provided(project(" :spring-jdbc" ))
@@ -792,6 +804,7 @@ project("spring-orm-hibernate4") {
792
804
project(" spring-orm-hibernate5" ) {
793
805
description = " Spring Object/Relational Mapping - Hibernate 5 support"
794
806
merge. into = project(" :spring-orm" )
807
+ uploadArchives. enabled = false
795
808
796
809
dependencies {
797
810
provided(project(" :spring-jdbc" ))
@@ -889,6 +902,7 @@ project("spring-webmvc") {
889
902
project(" spring-webmvc-tiles2" ) {
890
903
description = " Spring Framework Tiles2 Integration"
891
904
merge. into = project(" :spring-webmvc" )
905
+ uploadArchives. enabled = false
892
906
893
907
dependencies {
894
908
provided(project(" :spring-context" ))
0 commit comments