Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 597 for project$it (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         * to. The default value is true.
         *
         * @return true if this is a visible configuration.
         */
        boolean isVisible();
    
        /**
         * Sets the visibility of this configuration. When visible is set to true, this configuration is visible outside
         * the project it belongs to. The default value is true.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    [[dir: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: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                }
    
                include 'lib1', 'lib2'
    
            """
    
            buildFile << """
                gradle.beforeProject {
                    println "Before project \$it"
                }
                subprojects {
                    configurations {
                        conf
                    }
    
                    dependencies {
                        conf 'org:module:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    $ gradle init
    $ git add .
    $ git commit -m "Initial commit"
    $ git push
    ----
    
    === Test building the project
    
    The project uses the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper>> for building the project.
    It is a recommended practice for any Gradle project as it enables your project to built on CI without having to install the Gradle runtime.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

     * This plugin is automatically applied to most projects that build any JVM language source.  It creates a {@link JavaPluginExtension}
     * extension named {@code java} that is used to configure all jvm-related components in the project.
     *
     * It is responsible for configuring the conventions of any {@link SourceSet}s that are present and used by
     * (for example) the Java, Groovy, or Kotlin plugins.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    When considering task outputs, Gradle only cares about the inputs to the task: the task type itself, input files and parameters etc., but it doesn't care about the task's name or which project it can be found in.
    Running `javac` will produce the same output regardless of the name of the `JavaCompile` task that invoked it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    When relocation information is published retroactively, it is not necessary to wait for next regular release of the project, it can be published in the meantime. As mentioned above, the relocation information should then be removed again from the build file once the relocation POM has been published.
    
    [[publishing_maven:relocation_duplicate_dependencies]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    [[sec:variant-visual]]
    == Visualizing variant information
    
    [[outgoing_variants_report]]
    === Outgoing variants report
    
    The report task `outgoingVariants` shows the list of variants available for selection by consumers of the project. It displays the capabilities, attributes and artifacts for each variant.
    
    This task is similar to the `dependencyInsight` <<viewing_debugging_dependencies.adoc#sec:identifying_reason_dependency_selection,reporting task>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    // limitations under the License.
    
    [[java_plugin]]
    = The Java Plugin
    
    The Java plugin adds Java compilation along with testing and bundling capabilities to a project.
    It serves as the basis for many of the other JVM language Gradle plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

            <field xdoc.separator="blank">
              <name>groupId</name>
              <version>3.0.0+</version>
              <required>true</required>
              <description>
                A universally unique identifier for a project. It is normal to
                use a fully-qualified package name to distinguish it from other
                projects with a similar name (eg. {@code org.apache.maven}).
              </description>
              <type>String</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top