Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for ipr (0.03 sec)

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