Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for inferModulePath (0.2 sec)

  1. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

            generator.setClasspath(getRelativePath(javaModuleDetector.inferClasspath(mainModule.isPresent(), getClasspath())));
            generator.setModulePath(getRelativePath(javaModuleDetector.inferModulePath(mainModule.isPresent(), getClasspath())));
            if (StringUtils.isEmpty(getExecutableDir())) {
                generator.setScriptRelPath(getUnixScript().getName());
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    Gradle will automatically put a Jar of your dependencies on the module path, instead of the classpath, if these three things are true:
    
    * `java.modularity.inferModulePath` is *not* turned off
    * We are actually building a module (as opposed to a traditional library) which we expressed by adding the `module-info.java` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    <<intro_multi_project_builds.adoc#sec:executing_tasks_by_fully_qualified_name,fully qualified path to the task>>.
    
    ==== `modularity.inferModulePath` defaults to 'true'
    
    <<java_library_plugin.adoc#sec:java_library_modular,Compiling>>,
    <<java_testing.adoc#sec:java_testing_modular,testing>> and
    <<application_plugin.adoc#sec:application_modular,executing>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

            FileCollection classpath = javaModuleDetector.inferClasspath(testIsModule, stableClasspath);
            FileCollection modulePath = javaModuleDetector.inferModulePath(testIsModule, stableClasspath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
Back to top