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

Commit e8b96a5

Browse files
committed
Use artifactory plugin directly
1 parent 2f1c1ed commit e8b96a5

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ plugins {
77
id 'checkstyle'
88
id 'org.ajoberstar.grgit' version '3.1.1'
99
id "io.spring.dependency-management" version '1.0.8.RELEASE'
10+
id 'com.jfrog.artifactory' version '4.9.8' apply false
1011
}
1112
description = 'Spring Integration AWS Support'
1213

@@ -327,8 +328,8 @@ task depsZip(type: Zip, dependsOn: distZip) { zipTask ->
327328
}
328329

329330
artifacts {
330-
archives sourcesJar
331-
archives javadocJar
331+
// archives sourcesJar
332+
// archives javadocJar
332333
archives distZip
333334
archives docsZip
334335
archives schemaZip

publish-maven.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'maven-publish'
2+
apply plugin: 'com.jfrog.artifactory'
23

34
publishing {
45
publications {
@@ -50,3 +51,7 @@ publishing {
5051
}
5152
}
5253
}
54+
55+
artifactoryPublish {
56+
publications(publishing.publications.mavenJava)
57+
}

0 commit comments

Comments
 (0)