mirror of
https://github.com/plexusorg/Plex.git
synced 2024-12-23 09:37:37 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
20fe89edbc
16
build.gradle
16
build.gradle
@ -118,6 +118,18 @@ publishing {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
plexSnapshots(MavenPublication) {
|
||||||
|
from(components.java)
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
url("https://nexus.telesphoreo.me/repository/plex-snapshots/")
|
||||||
|
credentials {
|
||||||
|
username = System.getenv("plex_repo_user")
|
||||||
|
password = System.getenv("plex_repo_pass")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -144,3 +156,7 @@ tasks {
|
|||||||
task publishRelease {
|
task publishRelease {
|
||||||
dependsOn(publishPlexReleasesPublicationToMavenRepository)
|
dependsOn(publishPlexReleasesPublicationToMavenRepository)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task publishSnapshot {
|
||||||
|
dependsOn(publishPlexSnapshotsPublicationToMaven2Repository)
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user