geforkt von Mirrors/Velocity
Point all new Maven artifact deploys to Nexus
Dieser Commit ist enthalten in:
Ursprung
85d88d59d3
Commit
4469a89aaa
@ -92,10 +92,14 @@ publishing {
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
name = 'myRepo'
|
||||
def base = 'file:///maven-repo'
|
||||
def releasesRepoUrl = "$base/releases"
|
||||
def snapshotsRepoUrl = "$base/snapshots"
|
||||
credentials {
|
||||
username project.findProperty('nexusUsername') ?: ''
|
||||
password project.findProperty('nexusPassword') ?: ""
|
||||
}
|
||||
name = 'velocity-nexus'
|
||||
def base = 'https://nexus.velocitypowered.com/repository/velocity-artifacts'
|
||||
def releasesRepoUrl = "$base-releases/"
|
||||
def snapshotsRepoUrl = "$base-snapshots/"
|
||||
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren