Skip to content

Commit

Permalink
Merge pull request #67 from XYOracleNetwork/develop
Browse files Browse the repository at this point in the history
Develop - remove pom config
  • Loading branch information
Phillip Lorenzo authored Dec 14, 2019
2 parents be8162d + 573f9ed commit bd97d48
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions xyo-android-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,18 +102,18 @@ publishing {
version verString

//The publication doesn't know about our dependencies, so we have to manually add them to the pom
pom.withXml {
//def dependenciesNode = asNode().appendNode('dependencies')
//Iterate over the compile dependencies (we don't want the test ones), adding a <dependency> node for each
configurations.compile.allDependencies.each {
if (it.name != 'unspecified') {
def dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', it.group)
dependencyNode.appendNode('artifactId', it.name)
dependencyNode.appendNode('version', it.version)
}
}
}
// pom.withXml {
// //def dependenciesNode = asNode().appendNode('dependencies')
// //Iterate over the compile dependencies (we don't want the test ones), adding a <dependency> node for each
// configurations.compile.allDependencies.each {
// if (it.name != 'unspecified') {
// def dependencyNode = dependenciesNode.appendNode('dependency')
// dependencyNode.appendNode('groupId', it.group)
// dependencyNode.appendNode('artifactId', it.name)
// dependencyNode.appendNode('version', it.version)
// }
// }
// }
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions xyo-android-library/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Fri Dec 13 16:10:54 PST 2019
VERSION_CODE=160
#Fri Dec 13 16:57:06 PST 2019
VERSION_CODE=162

0 comments on commit bd97d48

Please sign in to comment.