Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getScriptRelPath (0.43 sec)

  1. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/JavaAppStartScriptGenerationDetails.java

         *
         * @since 6.4
         */
        List<String> getModulePath();
    
        /**
         * The path of the script, relative to the application home directory.
         */
        String getScriptRelPath();
    
        /**
         * This system property to use to pass the script name to the application. May be null.
         */
        @Nullable
        String getAppNameSystemProperty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/DefaultJavaAppStartScriptGenerationDetails.java

        public List<String> getClasspath() {
            return classpath;
        }
    
        @Override
        public List<String> getModulePath() {
            return modulePath;
        }
    
        @Override
        public String getScriptRelPath() {
            return scriptRelPath;
        }
    
        @Override
        @Nullable
        public String getAppNameSystemProperty() {
            return appNameSystemProperty;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptTemplateBindingFactory.java

            binding.put(ScriptBindingParameter.APP_NAME_SYS_PROP.getKey(), details.getAppNameSystemProperty());
            binding.put(ScriptBindingParameter.APP_HOME_REL_PATH.getKey(), createJoinedAppHomeRelativePath(details.getScriptRelPath()));
            binding.put(ScriptBindingParameter.CLASSPATH.getKey(), createJoinedPath(details.getClasspath()));
            binding.put(ScriptBindingParameter.MODULE_PATH.getKey(), createJoinedPath(details.getModulePath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top