Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CheckstyleExtension (0.26 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

            });
    
            CheckstyleExtension checkstyle = project.getExtensions().getByType(CheckstyleExtension.class);
            tasks.register("checkstyleApi", Checkstyle.class, task -> {
                task.source(extension.getDocumentedSource());
                // TODO: This is ugly
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Oct 16 13:03:20 GMT 2023
    - 6.9K bytes
    - Viewed (0)
  2. build.gradle.kts

      }
    
      val checkstyleConfig: Configuration by configurations.creating
      dependencies {
        checkstyleConfig(rootProject.libs.checkStyle) {
          isTransitive = false
        }
      }
    
      configure<CheckstyleExtension> {
        config = resources.text.fromArchiveEntry(checkstyleConfig, "google_checks.xml")
        toolVersion = rootProject.libs.versions.checkStyle.get()
        sourceSets = listOf(project.sourceSets["main"])
      }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Apr 18 01:32:42 GMT 2024
    - 8.9K bytes
    - Viewed (0)
Back to top