Ich bin ein Neuling bei Gradle und Artifactory und möchte eine JAR-Datei zu Artifactory hochladen.
Hier ist meine build.gradle
Datei:
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'artifactory-publish'
groupId = 'myGroup'
version = '1.0'
def artifactId = projectDir.name
def versionNumber = version
artifactory {
contextUrl = 'http://path.to.artifactory' // base artifactory url
publish {
repository {
repoKey = 'libs-releases' // Artifactory repository key to publish to
username = 'publisher' // publisher user name
password = '********' // publisher password
maven = true
}
}
}
artifactoryPublish {
dependsOn jar
}
Nach dem Ausführen der artifactoryPublish
Aufgabe ist der Build wie folgt erfolgreich:
> gradle artifactoryPublish --stacktrace
:compileJava UP-TO-DATE
:processResources UP-TO-DATE
:classes UP-TO-DATE
:jar
:artifactoryPublish
Deploying build info to: http://path.to.artifactory/api/build
BUILD SUCCESSFUL
Total time: 7.387 secs
Es wird jedoch nichts außer den Build-Informationen an Artifactory gesendet.
Jede Hilfe wird sehr geschätzt.
Bearbeiten:
Wie JBaruch erwähnte, habe ich hinzugefügt
apply plugin: 'maven-publish'
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
und standardmäßig Abschnitt zu künstlicher Aufgabe
defaults {
publications ('mavenJava')
}
Jetzt funktioniert es.
Vielen Dank
defaults
geht tatsächlich hineinartifactory.publish
, nicht nur in der Root-artifactory
Aufgabe.