Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for registerTransform (0.13 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/JdkDownloadPlugin.java

            project.getDependencies().getAttributesSchema().attribute(jdkAttribute);
            project.getDependencies().getArtifactTypes().maybeCreate(ArtifactTypeDefinition.ZIP_TYPE);
            project.getDependencies().registerTransform(UnzipTransform.class, transformSpec -> {
                transformSpec.getFrom()
                    .attribute(ArtifactAttributes.ARTIFACT_FORMAT, ArtifactTypeDefinition.ZIP_TYPE)
                    .attribute(jdkAttribute, true);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 7.6K bytes
    - Click Count (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        registerTransform(ExplodeZipAndFindJars) {
            from.attribute(ARTIFACT_TYPE, 'zip')
            to.attribute(ARTIFACT_TYPE, 'gradle-libs-dir')
        }
        registerTransform(FindGradleClasspath) {
            from.attribute(ARTIFACT_TYPE, 'gradle-libs-dir')
            to.attribute(ARTIFACT_TYPE, 'gradle-classpath')
        }
        dependencies.registerTransform(FindGradleJars) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 30 10:14:25 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

            }
            /*
             * It would perhaps be better to do this more selectively instead of applying this transform so broadly and having
             * it just no-op in most cases.
             */
            registerTransform(Minify::class) {
                from.attribute(minified, false).attribute(artifactType, "jar")
                to.attribute(minified, true).attribute(artifactType, "jar")
                parameters {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 18:27:10 GMT 2026
    - 5.8K bytes
    - Click Count (0)
Back to Top