Skip to content

Commit

Permalink
Update publishing config and frames version
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed May 5, 2021
1 parent b0480c2 commit e6a5a3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/Frames.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

object Frames {
const val appId = "dev.jahir.frames.app"
const val version = 341
const val versionName = "3.4.1"
const val version = 342
const val versionName = "3.4.2"
}
4 changes: 4 additions & 0 deletions scripts/publish-mavencentral.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ afterEvaluate {
def dependenciesNode = asNode().appendNode('dependencies')

project.configurations.implementation.allDependencies.each {
if (it == null) return
if (it.group == null) return
if (it.name == null) return
if (it.name == 'unspecified') return
def dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', it.group)
dependencyNode.appendNode('artifactId', it.name)
Expand Down

0 comments on commit e6a5a3a

Please sign in to comment.