Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for ipr (0.02 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithAnEmptyProject/expectedFiles/root.ipr.xml

    Tom Tresansky <******@****.***> 1689028866 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithASubProjectThatDoesNotHaveTheIdeaPluginApplied/expectedFiles/root.ipr.xml

    Tom Tresansky <******@****.***> 1689028866 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.ipr.xml

    Tom Tresansky <******@****.***> 1689028866 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/root/root.ipr.xml

    Tom Tresansky <******@****.***> 1689028866 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaProjectIntegrationTest.groovy

            )
    
            //then
            def ipr = getFile([:], 'someBetterName.ipr').text
            assert ipr.contains('project-jdk-name="1.3"')
            assert ipr.contains('!?*.ruby')
            assert !ipr.contains('someProjectThatWillBeExcluded')
            assert ipr.contains('hey buddy!')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void configuresHooks() {
            def ipr = file('root.ipr')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            ipr.bytecodeTargetLevel.module.find { it.@name == "child1" }.@target == "1.6"
            ipr.bytecodeTargetLevel.module.find { it.@name == "child2" }.@target == "1.5"
            !ipr.bytecodeTargetLevel.module.find { it.@name == "child3" }
    
            when:
            succeeds "idea"
    
            then:
            ipr.bytecodeTargetLevel.children().size() == 3
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaProjectFixture.groovy

    class IdeaProjectFixture extends IdeWorkspaceFixture {
        private final GPathResult ipr
        private final TestFile file
    
        IdeaProjectFixture(TestFile file, GPathResult ipr) {
            this.file = file
            this.ipr = ipr
        }
    
        String getLanguageLevel() {
            if (ipr******@****.***() != 0) {
                return ipr.component.@languageLevel
            }
            return null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

     *     id 'java'
     *     id 'idea'
     * }
     *
     * idea {
     *   project {
     *     ipr {
     *       //you can tinker with the output *.ipr file before it's written out
     *       withXml {
     *         def node = it.asNode()
     *         node.appendNode('iLove', 'tinkering with the output *.ipr file!')
     *       }
     *
     *       //closure executed after *.ipr content is loaded from existing file
     *       //but before gradle build information is merged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

                }
            """
    
            //given
            executer.withTasks('idea').run()
            def projectContent = getFile([:], 'master.ipr').text
            def moduleContent = getFile([:], 'master.iml').text
    
            executer.withTasks('idea').run()
            def projectContentAfterMerge = getFile([:], 'master.ipr').text
            def moduleContentAfterMerge = getFile([:], 'master.iml').text
    
            //then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeMultiProjectBuildIntegrationTest.groovy

                ":api:ideaModule",
                ":shared:ideaModule",
                ":shared:api:ideaModule",
                ":shared:model:ideaModule",
                ":idea")
    
            def ipr = parseIpr(file('root.ipr'))
            ipr.modules.assertHasModules(
                '$PROJECT_DIR$/root.iml',
                '$PROJECT_DIR$/api/root-api.iml',
                '$PROJECT_DIR$/shared/shared.iml',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top