2023-05-24 12:13:08 +02:00
|
|
|
if (project.hasProperty('forgeJoToken')) {
|
|
|
|
publishing {
|
|
|
|
repositories {
|
|
|
|
maven {
|
2024-02-19 17:24:28 +01:00
|
|
|
url 'https://xbib.org/api/packages/joerg/maven'
|
2023-05-24 12:13:08 +02:00
|
|
|
credentials(HttpHeaderCredentials) {
|
|
|
|
name = "Authorization"
|
|
|
|
value = "token ${project.property('forgeJoToken')}"
|
|
|
|
}
|
|
|
|
authentication {
|
|
|
|
header(HttpHeaderAuthentication)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|