Skip to content

Commit 8a5cd1f

Browse files
authored
Fix POM dependency build (#781)
* Fix for Gradle v4 * Bump release
1 parent c421d03 commit 8a5cd1f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Parse/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'com.github.kt3k.coveralls'
55
apply plugin: 'com.jfrog.bintray'
66

77
group = 'com.parse'
8-
version = '1.16.6-SNAPSHOT'
8+
version = '1.16.6'
99

1010
ext {
1111
projDescription = 'A library that gives you access to the powerful Parse cloud platform from your Android app.'
@@ -244,7 +244,6 @@ bintray {
244244

245245
// Create the publication with the pom configuration:
246246
apply plugin: 'maven-publish'
247-
248247
publishing {
249248
publications {
250249
MyPublication(MavenPublication) {
@@ -264,7 +263,7 @@ publishing {
264263
def dependenciesNode = asNode().appendNode('dependencies')
265264

266265
//Iterate over the compile dependencies (we don't want the test ones), adding a <dependency> node for each
267-
configurations.compile.allDependencies.each {
266+
configurations.implementation.allDependencies.each {
268267
def dependencyNode = dependenciesNode.appendNode('dependency')
269268
dependencyNode.appendNode('groupId', it.group)
270269
dependencyNode.appendNode('artifactId', it.name)

0 commit comments

Comments
 (0)