Skip to content

Commit

Permalink
Merge pull request #23 from VolodymyrMachekhin/master
Browse files Browse the repository at this point in the history
Fix parsing dependencies for gradle wrapper 6.5
  • Loading branch information
leandroBorgesFerreira authored Dec 2, 2020
2 parents 73fc8b6 + dd067d4 commit 5c2b91e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ out
.DS_Store

gradle.properties
local.properties
secret-ring.gpg
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val artifactIdVal = "dag-command"
val versionVal = "1.5.2"
val versionVal = "1.5.3"
val publicationName="dagCommand"

group = "com.github.leandroborgesferreira"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Mon Jun 01 16:36:08 CEST 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@ private fun Project.parseDependencies(): List<Project> =
.map { projectDependency ->
projectDependency.dependencyProject
}
.filterNot { dependencyProject ->
project.name == dependencyProject.name
}
}

0 comments on commit 5c2b91e

Please sign in to comment.