We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 618ac0d commit 402d683Copy full SHA for 402d683
1 file changed
librarian-gradle-plugin/src/main/kotlin/com/gradleup/librarian/gradle/module.kt
@@ -80,7 +80,9 @@ fun Project.librarianModule() {
80
val rootProperties = rootProperties()
81
val moduleProperties = moduleProperties()
82
83
- configureBcv(rootProperties)
+ if (moduleProperties.getProperty("bcv") != "false") {
84
+ configureBcv(rootProperties)
85
+ }
86
87
rootProperties.javaCompatibility()?.let {
88
configureJavaCompatibility(it)
0 commit comments