Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pathVariables (0.54 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         * <p>
         * For example see docs for {@link IdeaModule}
         */
        public Map<String, File> getPathVariables() {
            return pathVariables;
        }
    
        public void setPathVariables(Map<String, File> pathVariables) {
            this.pathVariables = pathVariables;
        }
    
        /**
         * The JDK to use for this module.
         * If {@code null}, the value of the existing or default ipr XML (inherited) is used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            runIdeaTask """
        apply plugin: "java"
        apply plugin: "idea"
    
        repositories {
            maven { url "${repoDir.toURI()}" }
        }
    
        idea {
           pathVariables("GRADLE_REPO": file("repo"))
        }
    
        dependencies {
            implementation "myGroup:myArtifact1:1.0"
        }
                """
    
            def module = parseImlFile("root")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top