Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 237 for packaging (0.15 sec)

  1. compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

        @Test
        void testInvalidAggregatorPackaging() throws Exception {
            SimpleProblemCollector result = validate("invalid-aggregator-packaging-pom.xml");
    
            assertViolations(result, 0, 1, 0);
    
            assertTrue(result.getErrors().get(0).contains("Aggregator projects require 'pom' as packaging."));
        }
    
        @Test
        void testMissingDependencyArtifactId() throws Exception {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

    import static org.apache.maven.api.Lifecycle.AFTER;
    import static org.apache.maven.api.Lifecycle.BEFORE;
    
    /**
     * Lifecycle definition, with eventual plugin bindings (when they are not packaging-specific).
     */
    public class Lifecycle {
        public Lifecycle() {}
    
        public Lifecycle(String id, List<String> phases, Map<String, LifecyclePhase> defaultPhases) {
            this.id = id;
            this.phases = phases;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/ProtoSession.java

    import java.util.Objects;
    import java.util.Optional;
    import java.util.concurrent.ConcurrentHashMap;
    
    import org.apache.maven.api.Artifact;
    import org.apache.maven.api.Lifecycle;
    import org.apache.maven.api.Packaging;
    import org.apache.maven.api.ProducedArtifact;
    import org.apache.maven.api.Project;
    import org.apache.maven.api.RemoteRepository;
    import org.apache.maven.api.Session;
    import org.apache.maven.api.Type;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

    /**
     * A Maven lifecycle is a sequence of predefined phases that govern the build process
     * of a Maven project. Each phase represents a specific step, such as compiling the
     * code, running tests, packaging the project, and deploying it. Executing a phase
     * triggers all preceding phases, ensuring that each step of the build process is
     * completed in the correct order. The three main lifecycles in Maven are
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Sep 24 07:54:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. CODEOWNERS

    /tests/integration/istioctl/                                     @istio/wg-user-experience-maintainers @istio/wg-networking-maintainers
    /tools/                                                          @istio/wg-test-and-release-maintainers
    /tools/packaging/common/envoy_bootstrap.json                     @istio/wg-networking-maintainers
    /tools/istio-iptables/                                           @istio/wg-networking-maintainers
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

        versionMapping {
            usage("java-api") {
                fromResolutionResult()
            }
            usage("java-runtime") {
                fromResolutionResult()
            }
        }
    
        pom {
            packaging = "jar"
            name = moduleIdentity.baseName.map { "${project.group}:$it" }
        }
    }
    
    fun publishNormalizedToLocalRepository() {
        val localRepository = layout.buildDirectory.dir("repo")
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Sep 19 13:21:47 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. ci/devinfra/docker/windows/Dockerfile

    	Remove-Item C:\tmp\pyinstall.exe -Force; \
    	\
    	Write-Host 'Complete.';
    
    # Install pip packages.
    RUN python -m pip install --ignore-installed --force-reinstall --upgrade \
        setuptools packaging
    
    # Install JDK 21.
    RUN \
      Add-Type -AssemblyName \"System.IO.Compression.FileSystem\"; \
      $zulu_pkg = \"zulu21.34.19-ca-jdk21.0.3-win_x64.zip\"; \
      $zulu_url = \"https://cdn.azul.com/zulu/bin/${zulu_pkg}\"; \
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Aug 20 13:57:04 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            validateStringNotEmpty("packaging", problems, Severity.ERROR, Version.BASE, m.getPackaging(), m);
    
            if (!m.getModules().isEmpty()) {
                if (!"pom".equals(m.getPackaging())) {
                    addViolation(
                            problems,
                            Severity.ERROR,
                            Version.BASE,
                            "packaging",
                            null,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  9. .teamcity/subprojects.json

        "path": "platforms/core-execution/build-cache-local",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "build-cache-packaging",
        "path": "platforms/core-execution/build-cache-packaging",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "build-cache-spi",
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Oct 23 22:33:41 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  10. android/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-parent</artifactId>
      <version>HEAD-android-SNAPSHOT</version>
      <packaging>pom</packaging>
      <name>Guava Maven Parent</name>
      <description>Parent for guava artifacts</description>
      <url>https://github.com/google/guava</url>
      <properties>
        <!--
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top