- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getPathForRemoteArtifact (0.2 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/LocalRepositoryManager.java
* @param remote – The source repository of the artifact, must not be {@code null}. * @return The path, relative to the local repository's base directory. */ @Nonnull Path getPathForRemoteArtifact( @Nonnull Session session, @Nonnull LocalRepository local, @Nonnull RemoteRepository remote, @Nonnull Artifact artifact);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Dec 08 09:10:49 UTC 2023 - 2.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java
path.append('-').append(artifact.getClassifier()); } path.append('.').append(artifact.getExtension()); return path.toString(); } public String getPathForRemoteArtifact(Artifact artifact, RemoteRepository repository, String context) { return getPathForLocalArtifact(artifact); } public String getPathForLocalMetadata(Metadata metadata) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* Shortcut for {@code getService(LocalArtifactManager.class).getPathForRemoteArtifact(...)}. * * @param remote the repository from where artifacts are downloaded * @param artifact the artifact for which to get a path * @return path associated to the given artifact * * @see org.apache.maven.api.services.LocalRepositoryManager#getPathForRemoteArtifact(Session, LocalRepository, RemoteRepository, Artifact) */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 36.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
} return delegate.pathOf(RepositoryUtils.toArtifact(artifact)); } public String getPathForRemoteArtifact(Artifact artifact, RemoteRepository repository, String context) { return delegate.pathOf(RepositoryUtils.toArtifact(artifact)); } public String getPathForLocalMetadata(Metadata metadata) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.2K bytes - Viewed (0)