- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 111 for getArtifacts (2.4 sec)
-
impl/maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java
MavenProject project = result.getProject(); assertEquals("bar", project.getProperties().getProperty("foo")); ArrayList<Artifact> artifacts = new ArrayList<>(project.getArtifacts()); assertEquals(1, artifacts.size()); assertEquals(INJECTED_ARTIFACT_ID, artifacts.get(0).getArtifactId()); } @Test void testReactorDependencyInjection() throws Exception {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ResolutionGroup.java
} public Artifact getPomArtifact() { return pomArtifact; } public Artifact getRelocatedArtifact() { return relocatedArtifact; } public Set<Artifact> getArtifacts() { return artifacts; } public List<ArtifactRepository> getResolutionRepositories() { return resolutionRepositories; } public Map<String, Artifact> getManagedVersions() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/ExtensionRealmCache.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t07/ProjectInheritanceTest.java
assertEquals(pom0Basedir, project1.getParent().getBasedir()); System.out.println("Project " + project1.getId() + " " + project1); Set set = project1.getArtifacts(); assertNotNull(set, "No artifacts"); assertFalse(set.isEmpty(), "No Artifacts"); assertTrue(set.size() == 3, "Set size should be 3, is " + set.size()); for (Object aSet : set) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java
} CacheRecord(LifecycleExecutionException exception) { this.artifacts = null; this.exception = exception; } public Set<Artifact> getArtifacts() { return artifacts; } public LifecycleExecutionException getException() { return exception; } } Key createKey(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginArtifactsCache.java
// marker interface for cache keys } /** * CacheRecord */ class CacheRecord { private final List<Artifact> artifacts; public List<Artifact> getArtifacts() { return artifacts; } public PluginResolutionException getException() { return exception; } private final PluginResolutionException exception;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t08/ProjectInheritanceTest.java
assertEquals(pom0Basedir, project1.getParent().getBasedir()); System.out.println("Project " + project1.getId() + " " + project1); Set set = project1.getArtifacts(); assertNotNull(set, "No artifacts"); assertFalse(set.isEmpty(), "No Artifacts"); Iterator iter = set.iterator(); assertTrue(set.size() == 4, "Set size should be 4, is " + set.size());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 3.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 25K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java
artifact = getArtifact(project, "maven-test-test", "scope-provided"); assertNull(artifact, "Check no provided dependencies are transitive"); artifact = getArtifact(project, "maven-test-test", "scope-test"); assertNull(artifact, "Check no test dependencies are transitive"); artifact = getArtifact(project, "maven-test-test", "scope-compile");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 6.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java
return new PluginRealmCache.CacheRecord( pluginDescriptor.getClassRealm(), pluginDescriptor.getArtifacts()); }); pluginDescriptor.setClassRealm(cacheRecord.getRealm()); pluginDescriptor.setArtifacts(new ArrayList<>(cacheRecord.getArtifacts())); for (ComponentDescriptor<?> componentDescriptor : pluginDescriptor.getComponents()) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 16:35:21 UTC 2025 - 46.4K bytes - Viewed (0)