Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for classifierA (0.04 sec)

  1. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorUtils.java

            }
    
            return pomArtifact;
        }
    
        /**
         * Creates POM artifact out of passed in artifact by dropping classifier (if exists) and rewriting extension to
         * "pom". Unconditionally, unlike {@link #toPomArtifact(Artifact)} that does this only for artifacts without
         * classifiers.
         *
         * @since 4.0.0
         */
        public static Artifact toPomArtifactUnconditionally(Artifact artifact) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java

            // to avoid treating a build POM as a repository (consumer) POM.
            if ("pom".equals(artifact.getExtension())) {
                String classifier = artifact.getClassifier();
                if (classifier == null || classifier.isEmpty()) {
                    Path consumer = getArtifactPath(
                            artifact.getGroupId(), artifact.getArtifactId(), artifact.getBaseVersion(), "consumer", "pom");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:20:38 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java

            DeployRequest request = createDeployRequestWithConsumerPom();
    
            DeployRequest result = transformer.remapDeployArtifacts(session, request);
    
            // Should have both consumer POM (no classifier) and build POM (with "build" classifier)
            Collection<Artifact> artifacts = result.getArtifacts();
            assertEquals(3, artifacts.size()); // original jar + consumer pom + build pom
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Nov 06 18:32:25 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  4. compat/maven-resolver-provider/pom.xml

          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>com.google.inject</groupId>
          <artifactId>guice</artifactId>
          <classifier>classes</classifier>
          <scope>provided</scope>
        </dependency>
    
        <!-- Testing -->
        <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter-api</artifactId>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 10:37:56 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/TransformedArtifact.java

                String classifier,
                String extension) {
            super(
                    source.getGroupId(),
                    source.getArtifactId(),
                    source.getVersionRange(),
                    source.getScope(),
                    extension,
                    classifier,
                    new TransformedArtifactHandler(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Nov 06 18:32:25 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  6. impl/maven-core/src/site/apt/artifact-handlers.apt

      define for each {{{../../api/maven-api-model/maven.html#class_dependency}dependency type}} information on the artifact
      (classifier, extension, language) and how to manage it as dependency (add to classpath, include dependencies).
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Nov 16 18:16:44 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformer.java

                for (Artifact main : mains) {
                    result.remove(main);
                    if (deployBuildPom) {
                        // Add the main POM as a build POM with "build" classifier
                        result.add(new DefaultArtifact(
                                main.getGroupId(),
                                main.getArtifactId(),
                                BUILD_POM_CLASSIFIER,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Nov 06 18:32:25 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  8. apache-maven/pom.xml

          <artifactId>org.eclipse.sisu.inject</artifactId>
        </dependency>
        <dependency>
          <groupId>com.google.inject</groupId>
          <artifactId>guice</artifactId>
          <classifier>classes</classifier>
        </dependency>
        <dependency>
          <groupId>org.ow2.asm</groupId>
          <artifactId>asm</artifactId>
        </dependency>
      </dependencies>
    
      <pluginRepositories>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Nov 10 03:14:05 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  9. okhttp-testing-support/build.gradle.kts

      api(rootProject.libs.junit.jupiter.engine)
    
      // This runs Corretto on macOS (aarch64) and Linux (x86_64). We don't test Corretto on other
      // operating systems or architectures.
      api(variantOf(libs.amazonCorretto) {
        classifier(
          when {
            OperatingSystem.current().isMacOsX -> "osx-aarch_64"
            OperatingSystem.current().isLinux -> "linux-x86_64"
            else -> "linux-x86_64" // Code that references Corretto will build but not run.
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue Nov 04 18:33:48 UTC 2025
    - 1.2K bytes
    - Viewed (1)
  10. impl/maven-cli/pom.xml

          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>com.google.inject</groupId>
          <artifactId>guice</artifactId>
          <classifier>classes</classifier>
          <scope>provided</scope>
        </dependency>
    
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top