Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for archiveBaseName (0.23 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

                @TaskAction
                void doNothing() {
                    // does nothing
                }
            }
    
            task tar(type: Tar) {
                from 'dir1'
                archiveBaseName = "test"
                destinationDirectory.set(layout.buildDirectory)
            }
            task shouldRun(type: TaskWithAutomaticDependency) {
                // "Look Ma, no dependsOn!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                task producer1(type: Jar)
                task producer2(type: Jar)
                tasks.withType(Jar).configureEach {
                    destinationDirectory = layout.buildDirectory.dir("produced")
                    archiveBaseName = name
                }
    
                ["api1", "api2"].each { conf ->
                    tasks.register("resolve\$conf", Copy) {
                        duplicatesStrategy = 'INCLUDE'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
    
                task jar(type: Jar) {
                    archiveBaseName = project.name
                    // TODO LJA: No idea why I have to do this
                    if (project.version != 'unspecified') {
                        archiveFileName = "\${project.name}-\${project.version}.jar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Use the `archiveAppendix`, `archiveFileName` , `archiveFile`, `archiveBaseName`, `archiveClassifier`, `destinationDirectory`, `archiveExtension` and `archiveVersion` properties instead.
    
    ==== IdeaModule API Cleanup
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top