Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for JAR (0.03 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenJavaModule.groovy

                                               "org.gradle.libraryelements": "jar",
                                               "org.gradle.usage": "java-runtime"])
        }
    
        void assertArtifactsPublished(String artifactFileExtension = "jar") {
            List<String> expectedArtifacts = [artifact("module"), artifact("pom")]
            features.each { feature ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsTestKitInjectedJavaPluginIntegrationTest.groovy

            testKitDir = file("test-kit")
            def executer = new TestKitBackedGradleExecuter(distribution, temporaryFolder, getBuildContext(), testKitDir)
            jar = file("plugins/sneaky.jar")
            executer.pluginClasspath.add(jar)
            return executer
        }
    
        def cleanup() {
            DaemonLogsAnalyzer.newAnalyzer(testKitDir.file(ToolingApiGradleExecutor.TEST_KIT_DAEMON_DIR_NAME)).killAll()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TransformProgressEventCrossVersionSpec.groovy

                return "Transform lib.jar (project $project) with $transformName"
            } else {
                return "Transform artifact lib.jar (project $project) with $transformName"
            }
        }
    
        String transformTarget(String project = ":lib") {
            if (targetVersion.baseVersion >= GradleVersion.version("6.6")) {
                return "lib.jar (project $project)"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/groovy/producer/build.gradle

                attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements, 'instrumented-jar'))
            }
        }
    }
    // end::declare-outgoing-configuration[]
    
    def instrumentedJar = tasks.register("instrumentedJar", Jar) {
        archiveClassifier = "instrumented"
    }
    
    // tag::attach-outgoing-artifact[]
    artifacts {
        instrumentedJars(instrumentedJar)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

     */
    class PathModularizationCache {
        /**
         * Module information for each JAR file or output directories.
         * Cached when first requested to avoid decoding the module descriptors multiple times.
         *
         * @see #getModuleInfo(Path)
         */
        private final Map<Path, PathModularization> moduleInfo;
    
        /**
         * Whether JAR files are modular. This map is redundant with {@link #moduleInfo},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiIdeaModelCrossVersionSpec.groovy

            lib.file.exists()
            lib.file.path.endsWith('coolLib-1.0.jar')
    
            lib.source.exists()
            lib.source.path.endsWith('coolLib-1.0-sources.jar')
    
            lib.javadoc.exists()
            lib.javadoc.path.endsWith('coolLib-1.0-javadoc.jar')
    
            lib.scope.scope == 'TEST'
    
            IdeaModuleDependency mod = libs.find {it instanceof IdeaModuleDependency}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/kotlin/producer/build.gradle.kts

            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named("instrumented-jar"))
        }
    }
    // end::declare-outgoing-configuration[]
    
    val instrumentedJar = tasks.register("instrumentedJar", Jar::class) {
        archiveClassifier = "instrumented"
    }
    
    // tag::attach-outgoing-artifact[]
    artifacts {
        add("instrumentedJars", instrumentedJar)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 927 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/kotlin/buildSrc/src/main/kotlin/com/acme/InstrumentedJarsPlugin.kt

    import org.gradle.api.attributes.java.TargetJvmVersion
    import org.gradle.api.component.AdhocComponentWithVariants
    import org.gradle.api.component.SoftwareComponentFactory
    import org.gradle.api.tasks.bundling.Jar
    import org.gradle.kotlin.dsl.creating
    import org.gradle.kotlin.dsl.getValue
    import org.gradle.kotlin.dsl.register
    import org.gradle.kotlin.dsl.named
    import javax.inject.Inject
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDevelocityPluginIntegrationTest.groovy

            when:
            configurationCacheRun 'jar', '--scan', '-Dscan.dump'
    
            then:
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result) {
                withTotalProblemsCount(0)
            }
            postBuildOutputContains 'Build scan written to'
    
            when:
            configurationCacheRun 'jar', '--scan', '-Dscan.dump'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ManifestUtil.java

    import java.io.File;
    import java.io.IOException;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    import java.util.jar.JarFile;
    import java.util.jar.Manifest;
    import java.util.zip.ZipException;
    
    public class ManifestUtil {
        private static final String[] EMPTY = new String[0];
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top