Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,869 for Packaged (0.3 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/exec/BuildActionExecutor.java

     * limitations under the License.
     */
    package org.gradle.launcher.exec;
    
    import org.gradle.internal.invocation.BuildAction;
    
    public interface BuildActionExecutor<PARAMS, CONTEXT> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ModuleComponentRepositoryAccess.java

         * Resolves a set of artifacts belonging to the given component, with the type specified. Any failures are packaged up in the result.
         */
        void resolveArtifactsWithType(ComponentArtifactResolveMetadata component, ArtifactType artifactType, BuildableArtifactSetResolveResult result);
    
        /**
         * Resolves the given artifact. Any failures are packaged up in the result.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/ReactorReader.java

            boolean packaged = false;
            for (String phase : getLifecycles(project)) {
                switch (phase) {
                    case "clean":
                        packaged = false;
                        break;
                    case "package":
                    case "install":
                    case "deploy":
                        packaged = true;
                        break;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/failRuntimeClasspathResolve.out

       > Could not resolve org.lwjgl:lwjgl:3.2.3.
         Required by:
             project :
          > The consumer was configured to find a library for use during runtime, compatible with Java 11, packaged as a jar, preferably optimized for standard JVMs, and its dependencies declared externally, as well as attribute 'org.gradle.native.operatingSystem' with value 'windows'. There are several available matching variants of org.lwjgl:lwjgl:3.2.3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 820 bytes
    - Viewed (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

                        version { prefer(groovyVersion) }
                        because("We use the packaged groovy")
                    }
                    add("$groovyGroup:groovy-templates") {
                        version { prefer(groovyVersion) }
                        because("We use the packaged groovy")
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

     */
    @ServiceScope(Scope.Global.class)
    public interface ModuleRegistry {
        /**
         * Locates an external module by name. An external module is one for which there is no meta-data available. Assumed to be packaged as a single jar file, and to have no runtime dependencies.
         *
         * @return the module. Does not return null.
         */
        Module getExternalModule(String name) throws UnknownModuleException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         */
        String MODULAR_PROCESSOR = "modular-processor";
    
        /**
         * Artifact type name for source code packaged in a JAR file.
         */
        String JAVA_SOURCE = "java-source";
    
        /**
         * Artifact type name for javadoc packaged in a JAR file.
         */
        String JAVADOC = "javadoc";
    
        /**
         * Artifact type name for a Maven plugin.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentArtifactResolveState.java

         */
        ComponentArtifactResolveMetadata getArtifactMetadata();
    
        /**
         * Discovers the set of artifacts belonging to this component, with the type specified. Does not download the artifacts. Any failures are packaged up in the result.
         */
        void resolveArtifactsWithType(ArtifactResolver artifactResolver, ArtifactType artifactType, BuildableArtifactSetResolveResult result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonJvmSettingsIntegrationTest.groovy

    """
    
            given:
            executer.useOnlyRequestedJvmOpts()
    
            expect:
            succeeds()
        }
    
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
        def "JVM args from gradle.properties packaged in distribution override defaults"() {
            setup:
            requireIsolatedGradleDistribution()
            executer.useOnlyRequestedJvmOpts()
    
            file('build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    pluginsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent additional plugins packaged in the distributions (lib/plugins/*.jar)"
    val agentsRuntimeOnly by bucket()
    agentsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent Java agents packaged in the distribution (lib/agents/*.jar)"
    
    coreRuntimeOnly.withDependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top