Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 597 for project$it (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    == Being respectful of consumers
    
    Whenever, as a developer, you decide to include a dependency, you must understand that there are _consequences for your consumers_.
    For example, if you add a dependency to your project, it becomes a _transitive dependency_ of your consumers, and therefore may participate in conflict resolution if the consumer needs a different version.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

                        """
                        plugins { `java-library` }
                        dependencies {
                            subprojects.forEach {
                                runtimeOnly(project(it.path))
                            }
                        }
                        """
                    )
                }
            }
    
            withBuildScript(
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    ====
    
    The plugin adds an extension named `distributions` of type link:{groovyDslPath}/org.gradle.api.distribution.DistributionContainer.html[DistributionContainer] to the project. It also creates a single distribution in the distributions container extension named `main`. If your build only produces one distribution you only need to configure this distribution (or use the defaults).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/dependency_management_for_java_projects.adoc

    [[sec:setting_up_a_standard_build_script_java_tutorial]]
    == Dissecting a typical build script
    
    Let's have a look at a very simple build script for a JVM-based project.
    It applies the <<java_library_plugin.adoc#java_library_plugin,Java Library plugin>> which automatically introduces a standard project layout, provides tasks for performing typical work and adequate support for dependency management.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    == Eclipse Integration
    
    When the Eclipse plugin encounters a Scala project, it adds additional configuration to make the project work with Scala IDE out of the box. Specifically, the plugin adds a Scala nature and dependency container.
    
    [[sec:intellij_idea_integration]]
    == IntelliJ IDEA Integration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. common/config/.golangci.yml

        # XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:
        # if it's called for subdir of a project it can't find external interfaces. All text editor integrations
        # with golangci-lint call it on a directory with the changed file.
        check-exported: false
      gci:
        sections:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

         *
         * @since 3.5
         */
        public void ipr(Action<? super XmlFileContentMerger> action) {
            action.execute(ipr);
        }
    
        /**
         * The name of the IDEA project. It is a convenience property that returns the name of the output file (without the file extension).
         * In IDEA, the project name is driven by the name of the 'ipr' file.
         */
        public String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * calling {@link #task(java.util.Map, String)} with an empty options map.</p>
         *
         * <p>After the task is added to the project, it is made available as a property of the project, so that you can
         * reference the task by name in your build file.  See <a href="#properties">here</a> for more details</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

                buildFile << """
                    apply plugin: 'java'
                    group = 'org.buildD'
                """
    
                ["b1", "buildC"].each {
                    project(it).buildFile << """
                        apply plugin: 'java'
                        group = 'org.buildD'
                    """
                }
            }
    
            when: "fetching without Isolated Projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

            TASKS_DETAILED_REPORT_TASK | true
        }
    
        def "can run multiple task reports in parallel"() {
            given:
            buildFile << multiProjectBuild()
            def projects = (1..100).collect {"project$it"}
            createDirs(projects as String[])
            settingsFile << "include '${projects.join("', '")}'"
    
            expect:
            succeeds(":tasks", *projects.collect { "$it:tasks" }, "--parallel")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top