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

17 lines
488 B
Groovy
Raw 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 {
url 'https://xbib.org/api/packages/xbib/maven'
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
}
}
}
}
}