We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d683f6 commit d2a76e2Copy full SHA for d2a76e2
WordPressUtils/build.gradle
@@ -36,7 +36,11 @@ android {
36
uploadArchives {
37
repositories {
38
mavenDeployer {
39
- repository(url: project.repository)
+ def repo_url = ""
40
+ if (project.hasProperty("repository")) {
41
+ repo_url = project.repository
42
+ }
43
+ repository(url: repo_url)
44
pom.version = android.defaultConfig.versionName
45
pom.groupId = "org.wordpress"
46
pom.artifactId = "wordpress-utils"
0 commit comments