diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-03-10 08:58:29 -0600 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-03-10 22:12:12 +0530 |
commit | de0e431d005244eb331706d1553171bc147b013c (patch) | |
tree | 62480709f08dcb6fc7b92213a5e6f5ae72a5d3b8 /tunnel/publish.gradle | |
parent | 6b304391b52285c1b5cb2c8105c39bfe515f50ef (diff) |
build: abstract out groupName
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'tunnel/publish.gradle')
-rw-r--r-- | tunnel/publish.gradle | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tunnel/publish.gradle b/tunnel/publish.gradle index 7cb4048c..064a901b 100644 --- a/tunnel/publish.gradle +++ b/tunnel/publish.gradle @@ -1,9 +1,6 @@ apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' -version wireguardVersionName -group 'com.wireguard.android' - install { repositories.mavenInstaller { pom.project { @@ -12,7 +9,7 @@ install { url 'https://www.wireguard.com/' packaging 'aar' - groupId 'com.wireguard.android' + groupId groupName artifactId 'tunnel' version wireguardVersionName |