Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for ipr (0.02 sec)

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

            def location = project.idea.project.location
    
            then:
            project.idea.project.outputFile == project.file("test-project.ipr")
            location.get().asFile == project.idea.project.outputFile
    
            when:
            project.idea.project.outputFile = project.file("other.ipr")
    
            then:
            location.get().asFile == project.idea.project.outputFile
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaModelTest.groovy

            then:
            model.project.vcs == 'GIT'
    
            when: "configure project file"
            model.project.ipr({ fcm -> fcm.xmlTransformer } as Action<XmlFileContentMerger>)
    
            then:
            1 * xmlMerger.getXmlTransformer()
    
            when: "configure project xml"
            model.project.ipr.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)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Path.java

     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model;
    
    import com.google.common.base.Objects;
    
    /**
     * Represents a path in a format as used often in ipr and iml files.
     */
    public class Path {
    
        private final String url;
        private final String relPath;
        private final String canonicalUrl;
    
        public Path(String url) {
            this(url, url, null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/src.xml

            <exclude>**/.repository/**</exclude>
            <exclude>**/.classpath</exclude>
            <exclude>**/.project</exclude>
            <exclude>**/.settings/**</exclude>
            <exclude>**/*.iml</exclude>
            <exclude>**/*.ipr</exclude>
            <exclude>**/.idea/**</exclude>
            <exclude>**/.DS_Store</exclude>
            <exclude>**/build/**</exclude>
          </excludes>
        </fileSet>
        <fileSet>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 27 13:14:24 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. .gitignore

    !/.idea/icon.png
    !/.idea/icon_dark.png
    */**/.idea
    */**/.shelf
    .shelf
    /*.iml
    /*/*.iml
    /*/*/*.iml
    /*/*/*/*.iml
    /*/*/*/*/*.iml
    /out
    /*/out
    /*/*/out
    /*/*/*/out
    /*/*/*/*/out
    /.teamcity/target
    /gradle.ipr
    /gradle.iws
    
    # Eclipse
    # -------
    *.classpath
    *.project
    *.settings
    /bin
    /subprojects/*/bin
    atlassian-ide-plugin.xml
    .metadata/
    
    # NetBeans
    # --------
    .nb-gradle
    .nb-gradle-properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaProject.java

            if (ideaProject == null) {
                return super.getXmlTransformer();
            }
            return ideaProject.getIpr().getXmlTransformer();
        }
    
        /**
         * output *.ipr file
         */
        @Override
        public File getOutputFile() {
            if (ideaProject == null) {
                return super.getOutputFile();
            }
            return ideaProject.getOutputFile();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiBuildIntegrationTest.groovy

        String libraryPluginId = "java-library"
    
        @Override
        IdeaProjectFixture workspace(TestFile workspaceDir, String ideWorkspaceName) {
            return IdeaFixtures.parseIpr(workspaceDir.file(ideWorkspaceName + ".ipr"))
        }
    
        @Override
        IdeaModuleFixture project(TestFile projectDir, String ideProjectName) {
            return IdeaFixtures.parseIml(projectDir.file(ideProjectName + ".iml"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

            when:
            applyPluginToProjects()
    
            then:
            project.idea instanceof IdeaModel
            project.idea.project != null
            project.idea.project.location.get().asFile == project.file("test-project.ipr")
            project.idea.module.outputFile == project.file("test-project.iml")
        }
    
        def "adds extension to child project"() {
            when:
            applyPluginToProjects()
    
            then:
    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/src/main/java/org/gradle/plugins/ide/idea/model/Jdk.java

     */
    package org.gradle.plugins.ide.idea.model;
    
    import com.google.common.base.Objects;
    
    /**
     * Represents information for the project Java SDK.
     * This translates to attributes of the ProjectRootManager element in the ipr.
     */
    public class Jdk {
    
        private boolean assertKeyword;
        private boolean jdk15;
        private String languageLevel;
        private String projectJdkName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top