bibliographic-character-sets/gradle/publish/xbib/forgejo.gradle

17 lines
489 B
Groovy
Raw Permalink Normal View History

2023-05-22 21:24:34 +02:00
if (project.hasProperty('forgeJoToken')) {
2023-05-22 20:46:41 +02:00
publishing {
repositories {
maven {
2024-12-27 10:52:57 +01:00
url 'https://xbib.org/api/packages/joerg/maven'
2023-05-22 20:46:41 +02:00
credentials(HttpHeaderCredentials) {
name = "Authorization"
2023-05-23 19:00:12 +02:00
value = "token ${project.property('forgeJoToken')}"
2023-05-22 21:24:34 +02:00
}
authentication {
header(HttpHeaderAuthentication)
2023-05-22 20:46:41 +02:00
}
}
}
}
}