Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for archivesBaseName (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    `archiveVersion`::
    Defaults to `$project.version` or 'unspecified' if the project has no version.
    
    `archiveBaseName`::
    Defaults to `$archivesBaseName`.
    
    [[sec:base_plugin_conventions]]
    == Conventions (deprecated)
    
    The Base Plugin also adds conventions related to the creation of archives, such as ZIPs, TARs and JARs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

            when:
            succeeds "publish"
    
            then:
            project1.assertApiDependencies("org.gradle.test:project2:2.0", "custom:custom3:456")
        }
    
        def "ivy-publish plugin does not take archivesBaseName into account"() {
            createBuildScripts("""
    project(":project2") {
        base {
            archivesName = "changed"
        }
    }
            """)
    
            when:
            run "publish"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginGradlePluginCrossVersionSmokeTest.kt

                if (GradleContextualExecuter.isConfigCache()) {
                    executer.expectDocumentedDeprecationWarning(
                        "The BasePluginExtension.archivesBaseName property has been deprecated. " +
                            "This is scheduled to be removed in Gradle 9.0. " +
                            "Please use the archivesName property instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            when:
            succeeds "publish"
    
            then:
            project1.assertApiDependencies("org.gradle.test:project2:2.0", "custom:custom3:456")
        }
    
        def "maven-publish plugin does not take archivesBaseName into account when publishing"() {
            createBuildScripts("""
    project(":project2") {
        base {
            archivesName = "changed"
        }
    }
            """)
    
            when:
            run "publish"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

                executer.expectDocumentedDeprecationWarning(
                    "The BasePluginExtension.archivesBaseName property has been deprecated. " +
                        "This is scheduled to be removed in Gradle 9.0. " +
                        "Please use the archivesName property instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    Many builds will function automatically as an included build, without declared substitutions.
    Here are some common cases where declared substitutions are required:
    
    * When the `archivesBaseName` property is used to set the name of the published artifact.
    * When a configuration other than `default` is published.
    * When the `MavenPom.addFilter()` is used to publish artifacts that don't match the project name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    Contains the project's source sets. Default value: Not null link:{javadocPath}/org/gradle/api/tasks/SourceSetContainer.html[SourceSetContainer]
    
    `String archivesBaseName`::
    The basename to use for archives, such as JAR or ZIP files. Default value: `__projectName__`
    
    `link:{javadocPath}/org/gradle/api/java/archives/Manifest.html[Manifest] manifest`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::{snippetsPath}/files/archiveNaming/tests/zipWithCustomName.out[]
    ----
    
    You can also override the default `archiveBaseName` value for _all_ the archive tasks in your build by using the _project_ property `archivesBaseName`, as demonstrated by the following example:
    
    ====
    include::sample[dir="snippets/files/archivesChangedBaseName/kotlin",files="build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The old convention object defines the `distsDirName`, `libsDirName` and `archivesBaseName` properties with simple getter and setter methods.
    Those methods are available in the extension only to maintain backwards compatibility.
    Build scripts should solely use the properties of type `Property`:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top