0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-20 03:52:17 +02:00

Java: use the artifact name as the human-readable name when publishing

This matches the (explicitly-specified) name in the previous Gradle
configuration.
This commit is contained in:
Jordan Rose 2022-03-11 13:14:08 -08:00
parent d2dd1edd78
commit bd30563044
3 changed files with 3 additions and 0 deletions

View File

@ -66,6 +66,7 @@ afterEvaluate {
artifact libsWithDebugSymbols
pom {
name = archivesBaseName
packaging = 'aar'
description = 'Signal Protocol cryptography library for Android'
url = 'https://github.com/signalapp/libsignal-client'

View File

@ -63,6 +63,7 @@ publishing {
from components.java
pom {
name = archivesBaseName
description = 'Signal Protocol cryptography library for Java'
url = 'https://github.com/signalapp/libsignal-client'

View File

@ -63,6 +63,7 @@ publishing {
from components.java
pom {
name = archivesBaseName
description = 'Signal Protocol cryptography library for Java (server-side)'
url = 'https://github.com/signalapp/libsignal-client'