- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 56 for Artifacts (0.04 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.factory.ArtifactFactory; import org.apache.maven.artifact.metadata.ArtifactMetadataRetrievalException; import org.apache.maven.artifact.metadata.ArtifactMetadataSource; import org.apache.maven.artifact.metadata.ResolutionGroup; import org.apache.maven.artifact.repository.ArtifactRepository; import org.apache.maven.artifact.repository.LegacyLocalRepositoryManager;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 25K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* * @param artifact the artifact for which to get a local path * @return local path associated to the given artifact, or {@code null} if none * * @see org.apache.maven.api.services.LocalRepositoryManager#getPathForLocalArtifact(Session, LocalRepository, Artifact) */ Path getPathForLocalArtifact(@Nonnull Artifact artifact); /** * Gets the relative path for an artifact cached from a remote repository.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java
public void addArtifact(Artifact artifact) { if (artifacts == null) { artifacts = new LinkedHashSet<>(); } artifacts.add(artifact); } public Set<Artifact> getArtifacts() { if (artifacts == null) { artifacts = new LinkedHashSet<>(); } return artifacts; } public void setArtifacts(Set<Artifact> artifacts) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
attachArtifact(project, artifact, path); } /** * Attaches a produced artifact to the project at the specified path. This is the base method * that the other attachArtifact methods delegate to. * * @param project the project to attach the artifact to * @param artifact the produced artifact to attach * @param path the path to the artifact file */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:29:13 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
assertEquals("http://test.com/test.jar", artifact.getUrl()); assertEquals("test-1.0.0.jar", artifact.getFileName()); assertEquals(ArtifactType.UNKNOWN, artifact.getType()); } public void test_Artifact_constructorWithoutUrl() { Artifact artifact = new Artifact("test", "1.0.0"); assertEquals("test", artifact.getName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
ComponentUtil.getThemeHelper().install(artifact); break; default: install(artifact); break; } } /** * Installs an artifact by downloading it from its URL. * * @param artifact the artifact to install * @throws PluginException if installation fails */ protected void install(final Artifact artifact) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java
public class CacheRecord { private Artifact pomArtifact; private Artifact relocatedArtifact; private List<Artifact> artifacts; private Map<String, Artifact> managedVersions; private List<ArtifactRepository> remoteRepositories; private long length; private long timestamp; CacheRecord( Artifact pomArtifact,
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 11.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java
for (Dependency dependency : dependencies) { Artifact artifact = createDependencyArtifact(dependency); if (!artifacts.containsKey(artifact.getDependencyConflictId())) { artifacts.put(artifact.getDependencyConflictId(), artifact); } } for (Artifact artifact : artifacts.values()) { try {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
* Also removes any previously installed versions of the same plugin. * * @param artifact the artifact to install */ public static void installArtifact(final Artifact artifact) { new Thread(() -> { final PluginHelper pluginHelper = ComponentUtil.getPluginHelper(); final Artifact[] artifacts = pluginHelper.getInstalledArtifacts(artifact.getType());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java
import java.util.Map; import java.util.Set; import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.metadata.ArtifactMetadataSource; import org.apache.maven.artifact.metadata.ResolutionGroup; import org.apache.maven.artifact.repository.ArtifactRepository; import org.apache.maven.artifact.resolver.ArtifactResolutionException; import org.apache.maven.artifact.resolver.ArtifactResolutionRequest;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 36.5K bytes - Viewed (0)