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'
5
5
apply plugin : ' com.jfrog.bintray'
6
6
7
7
group = ' com.parse'
8
- version = ' 1.16.6-SNAPSHOT '
8
+ version = ' 1.16.6'
9
9
10
10
ext {
11
11
projDescription = ' A library that gives you access to the powerful Parse cloud platform from your Android app.'
@@ -244,7 +244,6 @@ bintray {
244
244
245
245
// Create the publication with the pom configuration:
246
246
apply plugin : ' maven-publish'
247
-
248
247
publishing {
249
248
publications {
250
249
MyPublication (MavenPublication ) {
@@ -264,7 +263,7 @@ publishing {
264
263
def dependenciesNode = asNode(). appendNode(' dependencies' )
265
264
266
265
// 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 {
268
267
def dependencyNode = dependenciesNode. appendNode(' dependency' )
269
268
dependencyNode. appendNode(' groupId' , it. group)
270
269
dependencyNode. appendNode(' artifactId' , it. name)
You can’t perform that action at this time.
0 commit comments