Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for archiveBaseName (0.29 sec)

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

                       archiveBaseName = 'c-foo'
                    }
                    task barJar(type: Jar) {
                       archiveBaseName = 'c-bar'
                    }
                    task foo2Jar(type: Jar) {
                       archiveBaseName = 'c-foo2'
                    }
                    task bar2Jar(type: Jar) {
                       archiveBaseName = 'c-bar2'
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  2. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

    configureJarTasks()
    
    pluginManager.withPlugin("java-base") {
        configureClasspathManifestGeneration()
    }
    
    fun configureJarTasks() {
        tasks.withType<Jar>().configureEach {
            archiveBaseName = moduleIdentity.baseName
            archiveVersion = moduleIdentity.version.map { it.baseVersion.version }
            manifest.attributes(
                mapOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                .run()
        }
    
        private String fooAndBarJars() {
            '''
                task fooJar(type: Jar) {
                    archiveBaseName = 'c-foo'
                    destinationDirectory = projectDir
                }
                task barJar(type: Jar) {
                    archiveBaseName = 'c-bar'
                    destinationDirectory = projectDir
                }
                artifacts {
                    foo fooJar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                        assert resource != null && resource.getPath().endsWith('foo.jar!/foo.txt')
                    }
                }
    
                task jarFoo(type: Jar) {
                    archiveBaseName = 'foo'
                    from 'foo.txt'
                }
    
                task runInWorker(type: WorkerTask) {
                    isolationMode = '${isolationMode}'
                    workActionClass = ResourceWorkAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    You can set each of these properties on the task separately.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top