- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 133 for getGroupSid (0.26 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
int dot = name.lastIndexOf('.'); String ext = dot >= 1 ? name.substring(dot + 1) : ""; ProducedArtifact artifact = session.createProducedArtifact( project.getGroupId(), project.getArtifactId(), project.getVersion(), ext); attachArtifact(project, artifact, path); } /** * Attaches an artifact to the project with an explicitly specified type. *
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jan 30 23:29:13 GMT 2025 - 12K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java
} @Override protected Object getExtensionKey(Extension extension) { return extension.getGroupId() + ':' + extension.getArtifactId(); } @Override protected Object getExclusionKey(Exclusion exclusion) { return exclusion.getGroupId() + ':' + exclusion.getArtifactId(); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 21.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
} catch (InvalidVersionSpecificationException e) { return null; } Artifact artifact = createDependencyArtifactX( d.getGroupId(), d.getArtifactId(), versionRange, d.getType(), d.getClassifier(), d.getScope(), d.isOptional());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Feb 07 00:45:02 GMT 2025 - 33.5K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionRangeResolver.java
Map<String, ArtifactRepository> versionIndex = new HashMap<>(); Metadata metadata = new DefaultMetadata( request.getArtifact().getGroupId(), request.getArtifact().getArtifactId(), MAVEN_METADATA_XML, wantedNature); List<MetadataRequest> metadataRequests =Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 11.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
// reason it isn't ? This localization is kind-of a code smell. public static String getKey(MavenProject project) { return project.getGroupId() + ':' + project.getArtifactId() + ':' + project.getVersion(); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 10.3K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategy.java
} /** * Gets the plugin key (groupId:artifactId) for a plugin, handling default groupId. */ private String getPluginKey(Plugin plugin) { String groupId = plugin.getGroupId(); String artifactId = plugin.getArtifactId(); // Default groupId for Maven plugins if (groupId == null && artifactId != null && artifactId.startsWith(MAVEN_PLUGIN_PREFIX)) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 37K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
throw new MavenException(e); } } private static String gav(MavenProject p) { return p.getGroupId() + ":" + p.getArtifactId() + ":" + p.getVersion(); } private static String gav(Plugin p) { return p.getGroupId() + ":" + p.getArtifactId() + ":" + p.getVersion(); } /**
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* @see org.apache.maven.api.services.ProjectBuilder */ @Experimental public interface Project { /** * {@return the project groupId}. */ @Nonnull String getGroupId(); /** * {@return the project artifactId}. */ @Nonnull String getArtifactId(); /** * {@return the project version}. */ @Nonnull String getVersion();Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Nov 07 13:11:07 GMT 2025 - 15.3K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
Map<String, List<InputLocation>> metaVersionLocations = new HashMap<>(); for (CoreExtension coreExtension : coreExtensions) { String ga = coreExtension.getGroupId() + ":" + coreExtension.getArtifactId(); InputLocation location = coreExtension.getLocation(""); gasLocations.computeIfAbsent(ga, k -> new ArrayList<>()).add(location);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 10 07:39:11 GMT 2025 - 25.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java
String str = ownerMojo != null ? " The " + ownerMojo.getId() : "A"; String msg = str + " mojo is already being executed " + "on the project " + session.getCurrentProject().getGroupId() + ":" + session.getCurrentProject().getArtifactId() + ". " + "This mojo execution will be blocked " + "until the mojo is done.";
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jun 12 14:55:55 GMT 2025 - 21K bytes - Click Count (0)