Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. .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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. .gitignore

    /tensorflow/lite/gen/**
    /tensorflow/lite/tools/make/downloads/**
    /tensorflow/lite/tools/make/gen/**
    /api_init_files_list.txt
    /estimator_api_init_files_list.txt
    *.whl
    
    # Android
    .gradle
    .idea
    *.iml
    local.properties
    gradleBuild
    
    # iOS
    *.pbxproj
    *.xcworkspace
    /*.podspec
    /tensorflow/lite/**/coreml/**/BUILD
    /tensorflow/lite/**/ios/BUILD
    /tensorflow/lite/**/objc/BUILD
    /tensorflow/lite/**/swift/BUILD
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 22:28:59 UTC 2024
    - 934 bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/GenerateIdeaModuleTest.groovy

            when:
            childProject.idea.module.name = "foo"
    
            then:
            childProject.idea.module.name == "foo"
            childProject.ideaModule.outputFile.name == "foo.iml"
            childProject.ideaModule.outputFile.parentFile == existingOutputFolder
        }
    
        private applyPluginToProjects() {
            project.apply plugin: IdeaPlugin
            childProject.apply plugin: IdeaPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top