Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 262 for jar1 (0.34 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/api/plugins/BasePluginIntegrationTest.groovy

            executedAndNotSkipped(":jar1", ":jar2")
        }
    
        def "artifacts on role-locked configurations are not built by the assemble task by default"() {
            buildFile << """
                plugins {
                    id("base")
                }
    
                task jar1(type: Jar) {}
                task jar2(type: Jar) {}
                task jar3(type: Jar) {}
    
                configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

            def classpathFiles = [tmpDir.file('mydir/jar1.jar'), tmpDir.file('mydir/nested/jar2.jar')]
    
            then:
            ManifestUtil.createManifestClasspath(jarFile, classpathFiles) == "jar1.jar nested/jar2.jar";
        }
    
        def "creates manifest classpath with absolute urls"() {
            when:
            def tmpDirPath = tmpDir.testDirectory.toURI().rawPath
            def file1 = tmpDir.file('different/jar1.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/support/ClassBytesRepositoryTest.kt

        }
    
        @Test
        fun `finds top-level, nested, java, kotlin types in JARs and directories`() {
    
            val jar1 = withClassJar(
                "first.jar",
                Groovydoc::class.java,
                Groovydoc.Link::class.java,
                DeepThought::class.java
            )
    
            val jar2 = withClassJar(
                "second.jar",
                Wrapper::class.java,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 17:45:10 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/its/a/0.1/a-0.1.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/org.apache.maven.its/a/pom.xml 4.0.0 org.apache.maven.its a 0.1 jar Maven Integration Test :: Dummy Artifact maven-core-it file:///${basedir}/repo META-INF/maven/org.apache.maven.its/a/pom.properties #Generated by Maven #Sat Oct 24 00:27:56 CEST 2009 version=0.1 groupId=org.apache.maven.its artifactId=a...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/cache/internal/GeneratedGradleJarCache.java

    import java.io.File;
    
    /**
     * Cache for generated jars such as {@code gradle-api-${version}.jar} and {@code gradle-test-kit-${version}.jar}.
     */
    public interface GeneratedGradleJarCache {
    
        String CACHE_KEY = "generated-gradle-jars";
    
        String CACHE_DISPLAY_NAME = "Generated Gradle JARs cache";
    
        /**
         * Returns the generated jar uniquely identified by {@code identifier}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    `destinationDirectory`::
    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)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegritySpec.groovy

            def classesIndex = [:] as HashMap<String, List<String>> // class name -> list of containing jars
            jars.each { jar ->
                new ZipFile(jar).withCloseable {
                    def names = it.entries()*.name
                    def groupedNames = names.groupBy { it }
                    groupedNames.each { name, all ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

    val resolveManifestClasspath = configurations.resolvable("resolveManifestClasspath") {
        isTransitive = false
        extendsFrom(manifestClasspath.get())
        configureAsRuntimeJarClasspath(objects)
    }
    
    tasks.jar.configure {
        val classpath = resolveManifestClasspath.flatMap { configuration ->
            configuration.elements.map { classpathDependency ->
                classpathDependency.joinToString(" ") { it.asFile.name }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. deps.xml

    		</get>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${crawler.dir}/lib"/>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${suggest.dir}/lib"/>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${thumbnail.dir}/lib"/>
    	</target>
    
    	<target name="install.plugin.jar">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:59:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. subprojects/core-platform/build.gradle.kts

    plugins {
        id("gradlebuild.platform")
    }
    
    description = "Defines which JARs go into the core part (libs/*.jar) of a Gradle distribution (NOT libs/plugins/*.jar)."
    
    javaPlatform.allowDependencies()
    
    dependencies {
        runtime(project(":installation-beacon"))
        runtime(project(":api-metadata"))
        runtime(project(":daemon-server")) {
            because("This is the Gradle daemon implementation, which transitively depends on all other core projects.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top