Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for iml (0.02 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaProjectIntegrationTest.groovy

          <entry name="!?*.fooBar"/>
        </wildcardResourcePatterns>
      </component>
      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
        </modules>
      </component>
      <component name="ProjectRootManager" version="2" languageLevel="JDK_1_5" assert-keyword="true" jdk-15="true" project-jdk-type="JavaSDK" assert-jdk-15="true" project-jdk-name="1.5">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/api/build.gradle

    dependencies {
        runtimeOnly 'commons-collections:commons-collections:3.2.2@jar'
    }
    
    cleanIdea.doLast {
        assert !file("api/api.iml").isFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 148 bytes
    - Viewed (0)
  3. .gitignore

    **/target/**
    .project
    .classpath
    .settings/
    .svn/
    # Intellij
    *.ipr
    *.iml
    .idea
    .DS_Store
    /bootstrap
    /dependencies.xml
    .java-version
    .checkstyle
    .factorypath
    .vscode/
    repo/
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 18:29:19 UTC 2024
    - 178 bytes
    - Viewed (0)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaDependencyLockingIntegrationTest.groovy

        compileClasspath {
            resolutionStrategy.activateDependencyLocking()
        }
    }
    
    dependencies {
        implementation 'groupOne:artifactTwo:[2.0,3.0)'
    }
    """
            def content = getFile([print : true], 'root.iml').text
    
            //then
            assert content.count("artifactTwo-2.0.jar") == 1
            assert content.count("unresolved dependency - groupOne artifactTwo") >= 1
        }
    
        @Test
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithAnEmptyProject/expectedFiles/root.ipr.xml

        <option name="LOCALE"/>
        <option name="OPEN_IN_BROWSER" value="true"/>
      </component>
      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
        </modules>
      </component>
      <component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true" project-jdk-type="JavaSDK" assert-jdk-15="true" project-jdk-name="1.6">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.GenerateIdeaModule.xml

                    <td/>
                </tr>
                <tr>
                    <td>outputFile</td>
                    <td><literal><replaceable>${project.projectDir}</replaceable>/<replaceable>${project.name}</replaceable>.iml</literal>
                        (sometimes the <replaceable>project.name</replaceable> is prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. .gitignore

    .classpath
    .project
    .settings
    .gradle
    eclipsebin
    
    bin
    gen
    build
    out
    lib
    generated
    
    target
    pom.xml.*
    release.properties
    local.properties
    
    .idea
    *.iml
    *.ipr
    *.iws
    *.log
    classes
    
    obj
    
    .DS_Store
    
    # Special Mkdocs files
    docs/4.x
    docs/changelog.md
    docs/contributing.md
    docs/index.md
    
    # jenv
    /.java-version
    /site/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 10 11:52:12 UTC 2022
    - 337 bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

            project.idea.module.outputFile == project.file("test-project.iml")
        }
    
        def "adds extension to child project"() {
            when:
            applyPluginToProjects()
    
            then:
            childProject.idea instanceof IdeaModel
            childProject.idea.project == null
            childProject.idea.module.outputFile == childProject.file("child.iml")
        }
    
        def "adds 'ideaProject' task to root project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

        }
    
        private static void declareScalaSdk(ProjectLibrary scalaSdkLibrary, Node iml) {
            // only define a Scala SDK for a module if we could create a scalaSdkLibrary
            if (scalaSdkLibrary != null) {
                Node newModuleRootManager = findOrCreateFirstChildWithAttributeValue(iml, "component", "name", "NewModuleRootManager");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

        }
    
        @Override
        protected void onApply(final Project project) {
            getLifecycleTask().configure(withDescription("Generates IDEA project files (IML, IPR, IWS)"));
            getCleanTask().configure(withDescription("Cleans IDEA project files (IML, IPR)"));
    
            ideaModel = project.getExtensions().create("idea", IdeaModel.class);
    
            configureIdeaWorkspace(project);
            configureIdeaProject(project);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
Back to top