Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for IdeaProject (0.15 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/FileContentMerger.java

    /**
     * Models the generation/parsing/merging capabilities.
     * <p>
     * For examples see docs for {@link org.gradle.plugins.ide.eclipse.model.EclipseProject}
     * or {@link org.gradle.plugins.ide.idea.model.IdeaProject} and others.
     */
    public class FileContentMerger {
    
        private MutableActionSet whenMerged = new MutableActionSet();
        private MutableActionSet beforeMerged = new MutableActionSet();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/BasicIdeaProject.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model.idea;
    
    /**
     * IdeaProject that does not provide/resolve any external dependencies.
     * Only project dependencies and local file dependencies are included on the modules' classpath.
     * <p>
     * Useful for 'previewing' the output model of IdeaProject because it is supposed to be fast (e.g. does not download dependencies from the web).
     *
     * @since 1.0-milestone-5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/IdeaProjectModelCrossVersionSpec.groovy

                rootProject.name = 'root'
                include 'a'
                include 'b'
            """
    
            when:
            def ideaProject = loadToolingModel(IdeaProject)
    
            then:
            ideaProject.modules*.name == ['root', 'a', 'b']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

            ideaProjectTask.ideaProject.modules == [project.idea.module, childProject.idea.module, anotherChildProject.idea.module]
            ideaProjectTask.ideaProject.jdkName == JavaVersion.current().toString()
            ideaProjectTask.ideaProject.languageLevel.level == "JDK_1_6"
    
            childProject.tasks.findByName('ideaProject') == null
            childProject.tasks.findByName('cleanIdeaProject') == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/toolingApi/idea/groovy/src/main/java/org/gradle/sample/Main.java

                }
            }
    
            connector.forProjectDirectory(new File("."));
    
            ProjectConnection connection = connector.connect();
            try {
                IdeaProject project = connection.getModel(IdeaProject.class);
                System.out.println("***");
                System.out.println("Project details: ");
                System.out.println(project);
    
                System.out.println("***");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r11rc1/DependencyMetaDataCrossVersionSpec.groovy

    import org.gradle.tooling.model.idea.IdeaProject
    
    class DependencyMetaDataCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def "idea libraries contain gradle module information"() {
            given:
            prepareBuild()
    
            when:
            IdeaProject project = withConnection { connection -> connection.getModel(IdeaProject.class) }
            def module = project.modules[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModelBuilder.java

    import org.gradle.plugins.ide.idea.model.IdeaLanguageLevel;
    import org.gradle.plugins.ide.idea.model.IdeaModel;
    import org.gradle.plugins.ide.idea.model.IdeaModule;
    import org.gradle.plugins.ide.idea.model.IdeaProject;
    import org.gradle.plugins.ide.internal.tooling.idea.DefaultIdeaContentRoot;
    import org.gradle.plugins.ide.internal.tooling.idea.DefaultIdeaDependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.tooling.model.eclipse.EclipseProject
    import org.gradle.tooling.model.idea.IdeaModuleDependency
    import org.gradle.tooling.model.idea.IdeaProject
    
    /**
     * Dependency substitution is performed for models in a composite build
     */
    @TargetGradleVersion(">=3.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.tooling.model.eclipse.EclipseProject
    import org.gradle.tooling.model.idea.IdeaModuleDependency
    import org.gradle.tooling.model.idea.IdeaProject
    
    /**
     * Dependency substitution is performed for models in a composite build
     */
    @TargetGradleVersion(">=3.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r22/Idea13ModelCrossVersionSpec.groovy

                    generatedSourceDirs += file('foo')
                    generatedSourceDirs += file('foo2')
                  }
                }
            """
    
            when:
            IdeaProject project = withConnection { connection -> connection.getModel(IdeaProject.class) }
            def contentRoot = project.children[0].contentRoots[0]
    
            then:
            def generatedSourceDirectories = contentRoot.sourceDirectories.findAll { it.generated }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top