Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 127 for manifests (0.12 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-plugin-plugin/0.1/maven-plugin-plugin-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/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-plugin-plugin 0.1 plugin false true addPluginArtifactMet Does nothing. false true false false false true org.apache.maven.plugin.coreit.TestMojo java per-lookup once-per-session descriptor Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-resources-plugin/0.1/maven-resources-plugin-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/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-resources-plugin 0.1 resources false true testResources Does nothing. false true false false false true org.apache.maven.plugin.coreit.TestMojo java per-lookup once-per-session resources Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ContinuousBuildFileWatchingIntegrationTest.groovy

            executer.withArgument(FileSystemWatchingHelper.getDropVfsArgument(false))
            executer.beforeExecute {
                withWatchFs()
            }
    
            def numberOfFilesInVfs = 4 // source file, class file, JAR manifest, JAR file
            def vfsLogs = enableVerboseVfsLogs()
    
            when:
            buildFile << """
                plugins {
                    id('java')
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    // based on which Gradle module Jars are part of the distribution.
    val runtimeApiJarName = "gradle-runtime-api-info"
    
    // Ignore the build receipt as it is not relevant for API list and manifest generation
    normalization {
        runtimeClasspath {
            ignore("org/gradle/build-receipt.properties")
        }
    }
    
    // Configurations to define dependencies
    val coreRuntimeOnly by bucket()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. android/guava/pom.xml

            <artifactId>maven-bundle-plugin</artifactId>
            <version>5.1.8</version>
            <executions>
              <execution>
                <id>bundle-manifest</id>
                <phase>process-classes</phase>
                <goals>
                  <goal>manifest</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <instructions>
                <Export-Package>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts

            // A more general solution is probably required: https://github.com/gradle/gradle/issues/21114
            from(apiExtensionsFileCollection)
        }
    
    // -- Version manifest properties --------------------------------------
        val writeVersionsManifest by registering(WriteProperties::class) {
            destinationFile = layout.buildDirectory.file("versionsManifest/gradle-kotlin-dsl-versions.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_statements.txt

    # always behave reliably/deterministically, however if other tests are
    # concurrently accessing the cache while this test is running, it can
    # lead to cache lookup failures, which manifest as test failures here.
    # To avoid such flakes, use a separate isolated GOCACHE for this test.
    env GOCACHE=$WORK/cache
    
    # Initial run with simple coverage.
    go test -cover ./pkg1 ./pkg2 ./pkg3 ./pkg4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

                <executions>
                  <execution>
                    <goals>
                      <goal>manifest</goal>
                    </goals>
                  </execution>
                </executions>
              </plugin>
              <!-- Needed for including the manifest, see MJAR-71 -->
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 11 08:52:20 UTC 2021
    - 22.4K bytes
    - Viewed (0)
  9. maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

                <executions>
                  <execution>
                    <goals>
                      <goal>manifest</goal>
                    </goals>
                  </execution>
                </executions>
              </plugin>
              <!-- Needed for including the manifest, see MJAR-71 -->
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  10. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt

            val tempDirectory = java.nio.file.Files.createTempDirectory(jarFile.name).toFile()
            val classesDir = tempDirectory.resolve("classes")
            val manifestFile = tempDirectory.resolve("MANIFEST.MF")
            val buildReceiptFile = tempDirectory.resolve("build-receipt.properties")
            val classGraph = JarAnalyzer("", keepClasses, keepClasses, setOf()).analyze(artifact, classesDir, manifestFile, buildReceiptFile)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top