Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for createProducedArtifact (0.14 seconds)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * @return artifact with the given coordinates
         *
         * @see org.apache.maven.api.services.ArtifactFactory#createProduced(Session, String, String, String, String)
         */
        @Nonnull
        ProducedArtifact createProducedArtifact(String groupId, String artifactId, String version, String extension);
    
        /**
         * Shortcut for {@code getService(ArtifactFactory.class).createProduced(...)}.
         *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Jul 03 14:18:26 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

            if (artifact.getGroupId().isEmpty()
                    || artifact.getArtifactId().isEmpty()
                    || artifact.getBaseVersion().toString().isEmpty()) {
                artifact = session.createProducedArtifact(
                        artifact.getGroupId().isEmpty() ? project.getGroupId() : artifact.getGroupId(),
                        artifact.getArtifactId().isEmpty() ? project.getArtifactId() : artifact.getArtifactId(),
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Dec 17 16:17:01 GMT 2025
    - 10.9K bytes
    - Click Count (0)
Back to Top