Class GitLabCodeQualityExtension
- java.lang.Object
-
- io.github.dnalchemist.gitlab.codequality.GitLabCodeQualityExtension
-
public abstract class GitLabCodeQualityExtension extends java.lang.ObjectConfigures plugin integration with the surrounding build viagitlabCodeQuality { ... }.
-
-
Constructor Summary
Constructors Constructor Description GitLabCodeQualityExtension()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract org.gradle.api.provider.Property<java.lang.Boolean>getApplyToSubprojects()Whentrue, automatically applies this plugin to all subprojects of the current project.abstract org.gradle.api.provider.Property<java.lang.Boolean>getWireIntoCheck()Whentrue(default), wiresgenerateGitLabCodeQualityReportintocheck.
-
-
-
Method Detail
-
getWireIntoCheck
public abstract org.gradle.api.provider.Property<java.lang.Boolean> getWireIntoCheck()
Whentrue(default), wiresgenerateGitLabCodeQualityReportintocheck. Set tofalseto run it as an explicit step instead.
-
getApplyToSubprojects
public abstract org.gradle.api.provider.Property<java.lang.Boolean> getApplyToSubprojects()
Whentrue, automatically applies this plugin to all subprojects of the current project. Convenient for multi-module builds where every module participates. Defaults tofalse— apply the plugin manually (e.g. viasubprojects { ... }) if you need finer control.
-
-