File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ apply plugin: 'com.github.kt3k.coveralls'
55apply plugin : ' com.jfrog.bintray'
66
77group = ' com.parse'
8- version = ' 1.16.6-SNAPSHOT '
8+ version = ' 1.16.6'
99
1010ext {
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:
246246apply plugin : ' maven-publish'
247-
248247publishing {
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)
You can’t perform that action at this time.
0 commit comments