Skip to content

Commit 0454396

Browse files
committed
Fix 3
1 parent 00d547a commit 0454396

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

library/build.gradle

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,18 +72,26 @@ dependencies {
7272

7373
def libGroupId = 'com.nagopy.android'
7474
def libraryId = 'overlayviewmanager'
75+
def siteUrl = 'https://github.com/75py/Android-OverlayViewManager'
7576

77+
version = publish_version_name
78+
group = libGroupId
7679
bintray {
7780
user = project.hasProperty('bintrayUser') ? project.getProperty('bintrayUser') : ""
7881
key = project.hasProperty('bintrayKey') ? project.getProperty('bintrayKey') : ""
79-
// dryRun = true
82+
//dryRun = project.hasProperty('dryRun') ? project.getProperty('dryRun') : true
83+
dryRun = false
84+
publish = true
8085

8186
configurations = ['archives'] //When uploading configuration files
8287

8388
pkg {
8489
repo = 'maven'
85-
userOrg = '75py'
8690
name = libraryId
91+
userOrg = '75py'
92+
vcsUrl = 'https://github.com/75py/Android-OverlayViewManager.git'
93+
licenses = ['Apache-2.0']
94+
websiteUrl = siteUrl
8795
version {
8896
name = publish_version_name
8997
desc = 'Simple API for displaying overlay your views'
@@ -94,7 +102,8 @@ bintray {
94102
install {
95103
repositories.mavenInstaller {
96104
pom.project {
97-
name libraryId
105+
//name libraryId
106+
url siteUrl
98107
packaging 'aar'
99108
groupId libGroupId
100109
artifactId libraryId

0 commit comments

Comments
 (0)