Merge remote-tracking branch 'origin/master'

This commit is contained in:
Taah 2022-03-30 23:56:11 -07:00
commit 20fe89edbc
1 changed files with 16 additions and 0 deletions

View File

@ -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")
}
}
}
}
}
}
@ -143,4 +155,8 @@ tasks {
task publishRelease {
dependsOn(publishPlexReleasesPublicationToMavenRepository)
}
task publishSnapshot {
dependsOn(publishPlexSnapshotsPublicationToMaven2Repository)
}