- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for attachArtifact (0.28 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
* @see org.apache.maven.api.Type */ default void attachArtifact( @Nonnull Session session, @Nonnull Project project, @Nonnull String type, @Nonnull Path path) { ProducedArtifact artifact = session.createProducedArtifact( project.getGroupId(), project.getArtifactId(), project.getVersion(), null, null, type); attachArtifact(project, artifact, path); } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 24 11:52:48 UTC 2024 - 7.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ProducedArtifact.java
* <li>{@linkplain Project#getPomArtifact() the project POM artifact}</li> * <li>{@linkplain Project#getMainArtifact() the main artifact}</li> * <li>{@linkplain org.apache.maven.api.services.ProjectManager#attachArtifact(Session, Project, Path) artifacts to be attached to a project}</li> * </ul> * * <p>For the main artifact and attached artifacts, the
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
result.addAll(project.getArtifacts()); result.addAll(getAttachedArtifacts(project)); return Collections.unmodifiableCollection(result); } @Override public void attachArtifact(Project project, ProducedArtifact artifact, Path path) { nonNull(project, "project"); nonNull(artifact, "artifact"); nonNull(path, "path"); if (artifact.getGroupId().isEmpty()
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.3K bytes - Viewed (0)