Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ThirdPartyAuditTask (0.15 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditPrecommitPlugin.java

            resourcesTask.configure(t -> {
                t.setOutputDir(resourcesDir.toFile());
                t.copy("forbidden/third-party-audit.txt");
            });
            TaskProvider<ThirdPartyAuditTask> audit = project.getTasks().register("thirdPartyAudit", ThirdPartyAuditTask.class);
            audit.configure(t -> {
                t.dependsOn(resourcesTask);
                t.setJavaHome(Jvm.current().getJavaHome().getPath());
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/resources/forbidden/third-party-audit.txt

    # extraneous classes are in the excludes list, this ensures the list is
    # up-to-date, and that each module accurately documents the evil things
    # that its dependencies do.
    #
    # For more information, look at ThirdPartyAuditTask.groovy in buildSrc/
    
    #
    # Ruleset to fail on java internal apis, using this logic:
    # http://docs.oracle.com/javase/8/docs/api/java/lang/SecurityManager.html#checkPackageAccess-java.lang.String-
    #
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3K bytes
    - Click Count (0)
Back to Top