- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 91 for setArtifact (0.06 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
} @Override public LocalArtifactResult find(RepositorySystemSession session, LocalArtifactRequest request) { String path = getPathForLocalArtifact(request.getArtifact()); File file = new File(getRepository().getBasedir(), path); LocalArtifactResult result = new LocalArtifactResult(request); if (file.isFile()) { result.setFile(file);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.1K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java
artifact.getClassifier(), remoteRepositories, artifact.getDependencyTrail(), t); this.artifact = artifact; } public Artifact getArtifact() { return artifact; } public String getGroupId() { return groupId; } public String getArtifactId() { return artifactId; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Apr 01 21:22:14 GMT 2025 - 10.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java
ArtifactRequest request = new ArtifactRequest(pomArtifact, repositories, context); request.setTrace(trace); pomArtifact = resolver.resolveArtifact(session, request).getArtifact(); } catch (ArtifactResolutionException e) { throw new UnresolvableModelException(e.getMessage(), groupId, artifactId, version, e); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 11.4K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java
return result.getArtifactResults().stream() .filter(ArtifactResult::isResolved) .map(ArtifactResult::getArtifact) .collect(Collectors.toList()); } catch (PluginResolutionException | InterpolatorException e) { throw new ExtensionResolutionException(extension, e); } }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 13.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
return item; } private Artifact getArtifactFromInstallForm(final InstallForm form) { final String[] values = form.id.split(":"); return ComponentUtil.getPluginHelper().getArtifact(values[0], values[1]); } /** * Installs the specified artifact in a background thread. * Also removes any previously installed versions of the same plugin. *Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 11.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
requireNonNull(project, "project" + " cannot be null"); Collection<ProducedArtifact> attached = map(getMavenProject(project).getAttachedArtifacts(), a -> getSession(project) .getArtifact(ProducedArtifact.class, RepositoryUtils.toArtifact(a))); return Collections.unmodifiableCollection(attached); } @Override @Nonnull
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Dec 17 16:17:01 GMT 2025 - 10.9K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/extensions/BootstrapCoreExtensionManager.java
return result.getArtifactResults().stream() .filter(ArtifactResult::isResolved) .map(ArtifactResult::getArtifact) .collect(Collectors.toList()); } catch (PluginResolutionException | InterpolatorException e) { throw new ExtensionResolutionException(extension, e); } }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 13.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
if (dependency == null) { return null; } org.apache.maven.artifact.Artifact result = toArtifact(dependency.getArtifact()); result.setScope(dependency.getScope()); result.setOptional(dependency.isOptional()); return result; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 04 18:33:16 GMT 2025 - 15.8K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java
* like {@code maven-project}. * * @return The plugin artifacts, never {@code null}. */ public List<Artifact> getArtifacts() { return artifacts; } public void setArtifacts(List<Artifact> artifacts) { this.artifacts = artifacts; // clear the calculated artifactMap artifactMap = null; } public DependencyNode getDependencyNode() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 16.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
Stream.of(new ProjectArtifact(project)), // main project artifact if not a pom "pom".equals(project.getPackaging()) ? Stream.empty() : Stream.of(project.getArtifact())), // attached artifacts project.getAttachedArtifacts().stream()); return artifacts.map(RepositoryUtils::toArtifact); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Dec 15 11:20:38 GMT 2025 - 24.4K bytes - Click Count (0)