Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getInferModulePath (0.07 seconds)

  1. build-conventions/build.gradle

        api 'org.apache.rat:apache-rat:0.11'
        compileOnly "com.puppycrawl.tools:checkstyle:8.42"
    }
    
    project.getPlugins().withType(JavaBasePlugin.class) {
        java.getModularity().getInferModulePath().set(false);
        eclipse.getClasspath().getFile().whenMerged { classpath ->
            /*
             * give each source folder a unique corresponding output folder
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 09:43:51 GMT 2021
    - 2.7K bytes
    - Click Count (0)
  2. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/EclipseConventionPlugin.java

            project.getPlugins().withType(JavaBasePlugin.class, javaBasePlugin -> {
                    JavaPluginExtension java = project.getExtensions().getByType(JavaPluginExtension.class);
                    java.getModularity().getInferModulePath().set(false);
    
                    eclipseModel.getClasspath().getFile().whenMerged(c -> {
                        Classpath classpath = (Classpath) c;
    
                        /*
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 09:43:51 GMT 2021
    - 6.4K bytes
    - Click Count (0)
Back to Top