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

Commit e212c94

Browse files
committed
Adjust artifactory-init.gradle
1 parent de7a33f commit e212c94

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

.github/artifactory-init.gradle

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
1-
apply plugin: org.jfrog.gradle.plugin.artifactory.ArtifactoryPlugin
1+
gradle.projectsLoaded {
2+
rootProject {
3+
artifactory {
4+
publish {
5+
defaults {
6+
def zipArtifactProps =
7+
['zip.name': 'spring-integration-aws',
8+
'zip.displayname': 'Spring Integration Aws',
9+
'zip.deployed': 'false']
10+
properties {
11+
mavenJava zipArtifactProps, '*:*:*:*@zip'
12+
mavenJava 'zip.type': 'docs', '*:*:*:docs@zip'
13+
mavenJava 'zip.type': 'dist', '*:*:*:dist@zip'
14+
}
215

3-
artifactory {
4-
publish {
5-
defaults {
6-
def zipArtifactProps =
7-
['zip.name': 'spring-integration-aws',
8-
'zip.displayname': 'Spring Integration Aws',
9-
'zip.deployed': 'false']
10-
properties {
11-
mavenJava zipArtifactProps, '*:*:*:*@zip'
12-
mavenJava 'zip.type': 'docs', '*:*:*:docs@zip'
13-
mavenJava 'zip.type': 'dist', '*:*:*:dist@zip'
16+
publications('mavenJava')
17+
}
1418
}
15-
16-
publications('mavenJava')
1719
}
1820
}
1921
}

0 commit comments

Comments
 (0)