Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for iuml (0.27 sec)

  1. platforms/core-configuration/kotlin-dsl/doc/c4/build.gradle.kts

            outputDir = file("images")
        }
        diagrams {
            for (diagram in listOf("C4_1_Context", "C4_2_Container", "C4_3_Component")) {
                register(diagram) {
                    sourceFile = file("$diagram.puml")
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 380 bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/ConfigurationHooksIntegrationTest.groovy

    apply plugin: 'java'
    apply plugin: 'idea'
    
    idea {
        module {
            iml {
                whenMerged { it.jdkName = '1.44' }
            }
        }
    
        project {
            ipr {
                whenMerged { it.wildcards += '!?*.ruby' }
            }
        }
    }
    '''
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('1.44')
    
            def ipr = getFile([:], 'root.ipr').text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/ide/idea/groovy/build.gradle

    // tag::module-before-merged[]
    idea.module.iml {
        beforeMerged { module ->
            module.dependencies.clear()
        }
    }
    // end::module-before-merged[]
    
    // tag::project-before-merged[]
    idea.project.ipr {
        beforeMerged { project ->
            project.modulePaths.clear()
        }
    }
    // end::project-before-merged[]
    
    
    // tag::module-when-merged[]
    idea.module.iml {
        whenMerged { module ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 777 bytes
    - Viewed (0)
  4. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaModuleFixture.groovy

    class IdeaModuleFixture extends IdeProjectFixture {
        private final GPathResult iml
        private final TestFile file
    
        IdeaModuleFixture(TestFile file, GPathResult iml) {
            this.iml = iml
            this.file = file
        }
    
        String getLanguageLevel() {
            if (iml.component.@LANGUAGE_LEVEL.size() != 0) {
                return iml.component.@LANGUAGE_LEVEL
            }
            return null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/top-level.iml.xml

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

            def ideaModule = Mock(IdeaModule)
            _ * ideaModule.getOutputFile() >> new File("root/other.iml")
    
            when:
            project.configure([ideaModule], "1.6", new IdeaLanguageLevel("JDK_1_5"), JavaVersion.VERSION_1_8, ['?*.groovy'], [], '')
    
            then:
            project.modulePaths as Set == [path('file://$PROJECT_DIR$/other.iml')] as Set
    
        }
    
        def customJdkAndWildcards_shouldBeMerged() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaDependencySubstitutionIntegrationTest.groovy

            resolutionStrategy.dependencySubstitution {
                substitute module("junit:junit:4.7") using project(":project1")
            }
        }
    }
    """)
    
            def dependencies = parseIml("project2/project2.iml").dependencies
            assert dependencies.libraries.size() == 0
            assert dependencies.modules.size() == 1
            dependencies.assertHasModule(['COMPILE'], 'project1')
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.xml

                    <td><literal>project.targetCompatibility</literal></td>
                </tr>
                <tr>
                    <td>iml</td>
                    <td/>
                    <td/>
                </tr>
                <tr>
                    <td>outputFile</td>
                    <td>#name + <literal>'.iml'</literal></td>
                    <td/>
                </tr>
            </table>
        </section>
        <section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top