Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 597 for project$it (0.59 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildModelParameters.java

         */
        public boolean isParallelToolingApiActions() {
            return parallelToolingApiActions;
        }
    
        /**
         * When {@link  #isIsolatedProjects()} is true, should project state be invalidated when a project it is coupled with changes?
         * This parameter is only used for benchmarking purposes.
         */
        public boolean isInvalidateCoupledProjects() {
            return invalidateCoupledProjects;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpWebAndJavaProjectIntegrationTest.groovy

    class EclipseWtpWebAndJavaProjectIntegrationTest extends AbstractEclipseIntegrationSpec {
        @ToBeFixedForConfigurationCache
        def "generates configuration files for web project and java project it depends on"() {
            settingsFile << "include 'web', 'java'"
    
            file('java/src/main/java').mkdirs()
            file('web/src/main/java').mkdirs()
            file('web/src/main/webapp').mkdirs()
    
    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. maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java

             */
            INTERNAL,
    
            /**
             * Issue (present in some plugin) is "developer actionable" (of given plugin, by changing code and doing
             * new release), is NOT local to the currently built project. It may be reparable by updating given plugin
             * to new fixed version, or by dropping plugin use from currently built project.
             * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 26 16:22:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

        List<TestFile> sourceFiles
        VerboseVfsLogAccessor vfsLogs
    
        def setup() {
            buildTestFixture.withBuildInSubDir()
            def subprojects = (1..NUMBER_OF_SUBPROJECTS).collect { "project$it" }
            def rootProject = multiProjectBuild("javaProject", subprojects) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java-library'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/BuildTestFixture.groovy

            def rootMulti = populate(projectName) {
                subprojects.each {
                    settingsFile << "include '$it'\n"
    
                    project(it).buildFile << """
                        group = 'org.test'
                        version = '1.0'
                    """
                }
    
                buildFile << """
                    group = 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_file_basics.adoc

    The `java` plugin adds Java compilation along with testing and bundling capabilities to a project.
    
    === 2. Use convention properties
    A plugin adds tasks to a project.
    It also adds properties and methods to a project.
    
    The `application` plugin defines tasks that package and distribute an application, such as the `run` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

                """
                ['project1', 'project2'].each { downstream ->
                    file("$downstream/build.gradle") << """
                        dependencies {
                            implementation project(":$it")
                        }
                    """
                }
            }
    
            when:
            run 'project1:resolveDependencies', 'project2:resolveDependencies'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/HtmlDependencyReporter.java

    /**
     * Class responsible for the generation of an HTML dependency report.
     * <p>
     * The strategy is the following. The reporter uses an HTML template file containing a
     * placeholder <code>@js@</code>. For every project, it generates a JSON structure containing
     * all the data that must be displayed by the report. A JS file declaring a single variable, containing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 03 18:14:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

            gradleProject.name
            gradleProject.projectDirectory
            gradleProject.description
            gradleProject.tasks.collect {
                it.name
                it.project
                it.path
                it.description
                it.displayName
                it.group
                it.public
            }
        }
    
        private static void withJava(def it) {
            if (it != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    Consult the <<directory_layout.adoc#dir:gradle_user_home,Gradle Directories reference>> to learn more.
    
    [[project_root]]
    == Project Root directory
    
    The project root directory contains all source files from your project.
    
    It also contains files and directories Gradle generates, such as `.gradle` and `build`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top