- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 213 for getgroups (0.27 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java
return result; } private static boolean artifactEquals(Artifact a1, Artifact a2) { if (a1 == a2) { return true; } return Objects.equals(a1.getGroupId(), a2.getGroupId()) && Objects.equals(a1.getArtifactId(), a2.getArtifactId()) && Objects.equals(a1.getType(), a2.getType()) && Objects.equals(a1.getVersion(), a2.getVersion())Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 11.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/MavenMixedDependenciesValidator.java
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/PluginNotFoundException.java
public PluginNotFoundException(Plugin plugin, ArtifactNotFoundException e) { super( "Plugin could not be found - check that the goal name is correct: " + e.getMessage(), e.getGroupId(), e.getArtifactId(), e.getVersion(), "maven-plugin", null, e.getRemoteRepositories(), null,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanLogger.java
return step.name + "(" + step.project.getGroupId() + ":" + artifactId + ")"; } else { return step.name + "(:" + artifactId + ")"; } } } protected void mojo(Consumer<String> writer, MojoExecution mojoExecution) { String mojoExecId = mojoExecution.getGroupId() + ':' + mojoExecution.getArtifactId() + ':' + mojoExecution.getVersion()Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 7.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java
buffer.append(" {execution: ").append(executionId).append('}'); return buffer.toString(); } public String getGroupId() { if (mojoDescriptor != null) { return mojoDescriptor.getPluginDescriptor().getGroupId(); } return plugin.getGroupId(); } public String getArtifactId() { if (mojoDescriptor != null) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/AbstractRepositoryMetadata.java
} protected static Metadata createMetadata(Artifact artifact, Versioning versioning) { Metadata metadata = new Metadata(); metadata.setGroupId(artifact.getGroupId()); metadata.setArtifactId(artifact.getArtifactId()); metadata.setVersion(artifact.getVersion()); metadata.setVersioning(versioning); return metadata; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java
/** * Gets the effective group identifier of the model. * * @return The effective group identifier of the model or an empty string if unknown, never {@code null}. */ public String getGroupId() { return (groupId != null) ? groupId : ""; } /** * Sets the effective group identifier of the model. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 5.8K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java
Artifact artifact = mock(Artifact.class); when(artifact.getFile()).thenReturn(new File(new File("local/repository"), "some/path")); when(artifact.getGroupId()).thenReturn("group1"); when(artifact.getArtifactId()).thenReturn("artifact1"); when(artifact.getExtension()).thenReturn("ext"); when(artifact.getClassifier()).thenReturn("classifier1");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 7.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java
TaskProvider<RenderMarkdown> releaseNotesMarkdown = tasks.register("releaseNotesMarkdown", RenderMarkdown.class, task -> { task.setGroup("release notes"); task.setDescription("Generate release notes HTML page from Markdown."); task.getInputEncoding().convention(Charset.defaultCharset().name());
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri May 16 18:26:52 UTC 2025 - 6.2K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java
} } } return version; } public static String versionlessKey(Artifact artifact) { return versionlessKey(artifact.getGroupId(), artifact.getArtifactId()); } public static String versionlessKey(String groupId, String artifactId) { notBlank(groupId, "groupId can neither be null, empty nor blank");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0)