Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for archiveBaseName (0.3 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

                ${keyInfo.addAsPropertiesScript()}
    
                signing {
                    ${signingConfiguration()}
                    sign jar
                }
    
                jar {
                    archiveBaseName = "changed"
                    archiveClassifier = "custom"
                }
            """
    
            when:
            run "signJar"
    
            then:
            executedAndNotSkipped(":signJar")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    Defaults to `distsDirectory` for non-JAR archives and `libsDirectory` for JARs and derivatives of JAR, such as WARs.
    
    `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)
  3. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactoryTest.groovy

            when:
            def rootProject = TestUtil.createRootProject(temporaryFolder.testDirectory)
            def archive = rootProject.task('foo', type: Zip, {})
            archive.archiveBaseName.set("base-name")
            archive.archiveExtension.set('extension')
            archive.destinationDirectory.set(rootProject.buildDir)
    
            IvyArtifact ivyArtifact = parser.parseNotation(archive)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

            when:
            def rootProject = TestUtil.createRootProject(temporaryFolder.testDirectory)
            def archive = rootProject.task('foo', type: Zip, {})
            archive.archiveBaseName.set("baseName")
            archive.destinationDirectory.set(temporaryFolder.testDirectory)
            archive.archiveExtension.set(archiveExtension)
            archive.archiveClassifier.set(archiveClassifier)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top