- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 45 for artifact1 (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
LOGGER.error("Error while copying artifact " + artifact + " to project local repository.", e); } } private Path getArtifactPath(Artifact artifact) { String groupId = artifact.getGroupId(); String artifactId = artifact.getArtifactId(); String version = artifact.getBaseVersion(); String classifier = artifact.getClassifier();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:20:38 UTC 2025 - 24.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java
} log.debug("Populating class realm {}", realm.getId()); for (Artifact artifact : artifacts) { String id = artifact.getGroupId() + ":" + artifact.getArtifactId(); if (providedArtifacts.contains(id)) { log.debug(" Excluded {}", id); } else { File file = artifact.getFile(); log.debug(" Included {} located at {}", id, file);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 13.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/extensions/BootstrapCoreExtensionManager.java
} log.debug("Populating class realm {}", realm.getId()); for (Artifact artifact : artifacts) { String id = artifact.getGroupId() + ":" + artifact.getArtifactId(); if (providedArtifacts.contains(id)) { log.debug(" Excluded {}", id); } else { Path file = artifact.getPath(); log.debug(" Included {} located at {}", id, file);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 13.9K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 24.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java
* * <h3>Dependency management</h3> * * <p>{@link org.apache.maven.api.ArtifactCoordinates} instances are used to locate artifacts in a repository. * Each instance identifies an artifact or version range of artifacts in the Maven repository system.</p> * * <p>{@link org.apache.maven.api.Artifact} instances represent artifacts in the repository. * They are created when <dfn>resolving</dfn> an {@code ArtifactCoordinates} object. Resolving is the process
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:13:42 UTC 2025 - 7.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
} File getTouchfile(Artifact artifact) { StringBuilder sb = new StringBuilder(128); sb.append(artifact.getArtifactId()); sb.append('-').append(artifact.getBaseVersion()); if (artifact.getClassifier() != null) { sb.append('-').append(artifact.getClassifier()); } sb.append('.').append(artifact.getType()).append(LAST_UPDATE_TAG);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 9.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
requireNonNull(project, "project cannot be null"); requireNonNull(artifact, "artifact cannot be null"); requireNonNull(path, "path cannot be null"); if (artifact.getGroupId().isEmpty() || artifact.getArtifactId().isEmpty() || artifact.getBaseVersion().toString().isEmpty()) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 17 16:17:01 UTC 2025 - 10.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/impl/DefaultProjectManagerTest.java
when(artifact.getGroupId()).thenReturn("myGroup"); when(artifact.getArtifactId()).thenReturn("myArtifact"); when(artifact.getBaseVersion()).thenReturn(versionParser.parseVersion("1.0-SNAPSHOT")); projectManager.attachArtifact(project, artifact, artifactPath); // Verify that an exception is thrown when the artifactId differs when(artifact.getArtifactId()).thenReturn("anotherArtifact");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 17 16:17:01 UTC 2025 - 5.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
PluginDescriptor pluginDescriptor = pluginDescriptorCache.get(cacheKey, () -> { org.eclipse.aether.artifact.Artifact artifact = pluginDependenciesResolver.resolve(plugin, repositories, session); Artifact pluginArtifact = RepositoryUtils.toArtifact(artifact); PluginDescriptor descriptor = extractPluginDescriptor(pluginArtifact, plugin);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 16:35:21 UTC 2025 - 46.4K bytes - Viewed (0) -
.github/workflows/maven.yml
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 if: ${{ !cancelled() && !failure() }} with: name: cache-${{ runner.os }}-full-build-${{ matrix.java }} retention-days: 1 path: ${{ env.MIMIR_LOCAL }} - name: Upload test artifacts uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 04:24:24 UTC 2025 - 12.2K bytes - Viewed (0)