Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit 68f0a99

Browse files
committed
Bring back artifactory config
1 parent 121077f commit 68f0a99

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ plugins {
1111
id 'checkstyle'
1212
id 'org.ajoberstar.grgit' version '4.1.1'
1313
id 'io.spring.dependency-management' version '1.1.3'
14-
// id 'com.jfrog.artifactory' version '5.1.10'
1514
}
1615

1716
description = 'Spring Integration AWS Support'

publish-maven.gradle

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,22 @@ publishing {
5454
}
5555
}
5656

57+
artifactory {
58+
publish {
59+
defaults {
60+
def zipArtifactProps =
61+
['zip.name': 'spring-integration-aws',
62+
'zip.displayname': 'Spring Integration Aws',
63+
'zip.deployed': 'false']
64+
properties {
65+
mavenJava zipArtifactProps, '*:*:*:*@zip'
66+
mavenJava 'zip.type': 'docs', '*:*:*:docs@zip'
67+
mavenJava 'zip.type': 'dist', '*:*:*:dist@zip'
68+
}
69+
}
70+
}
71+
}
72+
5773
artifactoryPublish {
5874
publications(publishing.publications.mavenJava)
59-
def zipArtifactProps =
60-
['zip.name': 'spring-integration-aws',
61-
'zip.displayname': 'Spring Integration Aws',
62-
'zip.deployed': 'false']
63-
properties {
64-
mavenJava zipArtifactProps, '*:*:*:*@zip'
65-
mavenJava 'zip.type': 'docs', '*:*:*:docs@zip'
66-
mavenJava 'zip.type': 'dist', '*:*:*:dist@zip'
67-
}
6875
}

0 commit comments

Comments
 (0)