Skip to content

Commit

Permalink
Remove versioning workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
TWiStErRob committed May 6, 2024
1 parent 2c8fa35 commit 7aa1e33
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,3 @@ pluginManager.withPlugin("com.android.lint") {
enable += "StopShip"
}
}

if (project.gradle.startParameter.isConfigurationCacheRequested()) {
// TODEL https://github.com/TWiStErRob/net.twisterrob.gradle/issues/511
project.plugins.withId("com.android.application") {
project.VCS.setCurrent$twister_convention_versioning(new net.twisterrob.gradle.vcs.VCSExtension() {
@Override boolean isAvailableQuick() { return false }
@Override boolean isAvailable() { return isAvailableQuick() }
@Override String getRevision() { return "no VCS" }
@Override int getRevisionNumber() { return 0 }
@Override FileCollection files(Project project) { return project.files() }
})
}
}

0 comments on commit 7aa1e33

Please sign in to comment.