Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for iml (0.02 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaModelTest.groovy

            then:
            model.module.name == 'name'
    
            when: "configure module file"
            model.module.iml({ iml -> iml.xmlTransformer } as Action<IdeaModuleIml>)
    
            then:
            1 * moduleIml.getXmlTransformer()
    
            when: "configure module xml"
            model.module.iml.withXml(xmlAction)
    
            then:
            1 * xmlTransformer.addAction(xmlAction)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaModuleInternal.java

    import javax.inject.Inject;
    
    @NonNullApi
    public abstract class IdeaModuleInternal extends IdeaModule {
    
        @Inject
        public IdeaModuleInternal(Project project, IdeaModuleIml iml) {
            super(project, iml);
        }
    
        /**
         * Returns the user-defined value for the {@link #getLanguageLevel()} without triggering
         * the convention computation that is not compatible with Isolated Projects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 12:33:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/resources/org/gradle/plugins/ide/idea/model/customProject.xml

        <option name="OPEN_IN_BROWSER" value="true" />
      </component>
      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/gradle-idea-plugin.iml" filepath="$PROJECT_DIR$/gradle-idea-plugin.iml" />
        </modules>
      </component>
      <component name="ProjectRootManager" version="2" assert-keyword="true" jdk-15="false" project-jdk-name="1.4">
        <output url="file://$PROJECT_DIR$/out" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. .gitignore

    /jps-plugin/testData/kannotator
    /js/js.translator/testData/out/
    /js/js.translator/testData/out-min/
    /js/js.translator/testData/out-pir/
    .gradle/
    build/
    !**/src/**/build
    !**/test/**/build
    *.iml
    !**/testData/**/*.iml
    .idea/artifacts
    .idea/remote-targets.xml
    .idea/libraries/Gradle*.xml
    .idea/libraries/Maven*.xml
    .idea/modules
    .idea/runConfigurations/JPS_*.xml
    .idea/runConfigurations/_JPS_*.xml
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 21 15:38:02 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. test-site/.gitignore

    logs
    project/project
    project/target
    target
    tmp
    .history
    dist
    /.idea
    /*.iml
    /out
    /.idea_modules
    /.classpath
    /.project
    /RUNNING_PID
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 141 bytes
    - Viewed (0)
  6. .gitignore

    /target/
    /work/
    /bin/
    /.settings/
    .project
    .classpath
    *.iml
    .idea
    .DS_Store
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Oct 30 09:42:48 UTC 2015
    - 103 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ide/idea/kotlin/build.gradle.kts

    // tag::module-before-merged[]
    
    idea.module.iml {
        beforeMerged(Action<Module> {
            dependencies.clear()
        })
    }
    // end::module-before-merged[]
    
    // tag::project-before-merged[]
    
    idea.project.ipr {
        beforeMerged(Action<Project> {
            modulePaths.clear()
        })
    }
    // end::project-before-merged[]
    
    // tag::module-when-merged[]
    
    idea.module.iml {
        whenMerged(Action<Module> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. .gitignore

    # Maven
    target/
    *.ser
    *.ec
    .mvn/wrapper/maven-wrapper.jar
    
    # IntelliJ Idea
    .idea/
    out/
    *.ipr
    *.iws
    *.iml
    
    # Eclipse
    .classpath
    .project
    .settings/
    .metadata/
    
    # OS X
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 16:57:55 UTC 2023
    - 176 bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/webservice/build.gradle

        api project(':api'), files("$projectDir/lib/compile-1.0.jar")
        runtimeOnly "commons-lang:commons-lang:2.4"
        runtimeOnly "commons-io:commons-io:1.2"
    }
    
    cleanIdea.doLast {
        assert !file("webservice/webservice.iml").isFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 342 bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaModule.java

            if (module == null) {
                return super.getXmlTransformer();
            }
            return module.getIml().getXmlTransformer();
        }
    
        /**
         * Configures output *.iml file. It's <b>optional</b> because the task should configure it correctly for you (including making sure it is unique in the multi-module build). If you really need to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top