mirror of
https://github.com/plexusorg/Plex.git
synced 2024-12-23 09:37:37 +00:00
Try to automate Jenkins publishing
This commit is contained in:
parent
20fe89edbc
commit
f0a05a8256
12
build.gradle
12
build.gradle
@ -160,3 +160,15 @@ task publishRelease {
|
|||||||
task publishSnapshot {
|
task publishSnapshot {
|
||||||
dependsOn(publishPlexSnapshotsPublicationToMaven2Repository)
|
dependsOn(publishPlexSnapshotsPublicationToMaven2Repository)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task jenkinsPublish {
|
||||||
|
if (System.getenv("plex_repo_user") == "jenkins") {
|
||||||
|
if (System.getenv("plex_repo_user") != null && System.getenv("plex_repo_user") == "jenkins") {
|
||||||
|
if (!getVersion().toString().toLowerCase().endsWith("-snapshot")) {
|
||||||
|
dependsOn(publishPlexReleasesPublicationToMavenRepository)
|
||||||
|
} else {
|
||||||
|
dependsOn(publishPlexSnapshotsPublicationToMaven2Repository)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user