Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for archiveBaseName (0.51 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                    id("base")
                }
    
                task wrongZip(type: Zip) {
                    archiveBaseName = "wrong"
                }
                task firstZip(type: Zip) {
                    archiveBaseName = "first"
                }
                task secondZip(type: Zip) {
                    archiveBaseName = "second"
                }
    
                configurations {
                    consumable("blah") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

                Attributes.Name.IMPLEMENTATION_TITLE.toString() to "Gradle",
                Attributes.Name.IMPLEMENTATION_VERSION.toString() to moduleIdentity.version.map { it.baseVersion.version }
            )
        )
        archiveBaseName = runtimeApiJarName
        into("org/gradle/api/internal/runtimeshaded") {
            from(generateRelocatedPackageList)
        }
        from(apiMapping)
        from(defaultImports)
        from(pluginsManifest)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

                    artifactId = tasks.jar.get().archiveBaseName.get()
                }
            }
        }
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .build.gradle
    [source,groovy]
    ----
    subprojects {
        publishing {
            publications {
                mavenJava(MavenPublication) {
                    from components.java
                    artifactId = jar.archiveBaseName
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitClassDetectionIntegrationTest.groovy

                    ${testFrameworkDependencies}
                }
                jar {
                    manifest {
                        attributes 'Manifest-Version': '1.0'
                    }
                    archiveBaseName = 'testFramework'
                }
            """
    
            file("src/main/java/org/gradle/BasePlatformTestCase.java") << """
                package org.gradle;
                import junit.framework.TestCase;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishCoordinatesIntegTest.groovy

                apply plugin: 'java'
    
                group = 'group'
                version = '1.0'
    
                task apiJar(type: Jar) {
                    from sourceSets.main.output
                    archiveBaseName = "root-api"
                    exclude "**/impl/**"
                }
    
                publishing {
                    repositories {
                        ivy { url "${ivyRepo.uri}" }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCoordinatesIntegTest.groovy

                apply plugin: 'java'
    
                group = 'group'
                version = '1.0'
    
                task apiJar(type: Jar) {
                    from sourceSets.main.output
                    archiveBaseName = "root-api"
                    exclude "**/impl/**"
                }
    
                publishing {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

                task filteredConsumer(type: Zip) {
                    from(project.projectDir) {
                        include 'src/**'
                    }
                    destinationDirectory = file("build")
                    archiveBaseName = "output3"
                }
            """
    
            when:
            run("producer", "filteredConsumer")
            then:
            executedAndNotSkipped(":producer", ":filteredConsumer")
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top