- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 586 for groupId1 (0.04 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java
public interface ModelBuildingResult { /** * Gets the sequence of model identifiers that denote the lineage of models from which the effective model was * constructed. Model identifiers have the form {@code <groupId>:<artifactId>:<version>}. The first identifier from * the list denotes the model on which the model builder was originally invoked. The last identifier will always be * an empty string that by definition denotes the super POM.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 4.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/impl/DefaultProjectManagerTest.java
when(artifact.getArtifactId()).thenReturn("org.foo.bar"); projectManager.attachArtifact(project, artifact, artifactPath); // Verify that an exception is thrown when the groupId differs when(artifact.getGroupId()).thenReturn("anotherGroup"); assertExceptionMessageContains("myGroup:myArtifact:1.0-SNAPSHOT", "anotherGroup:org.foo.bar:1.0-SNAPSHOT"); } /**
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 17 16:17:01 UTC 2025 - 5.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java
return createArtifact("org.apache.maven", artifactId, version, type); } protected Artifact createArtifact(String groupId, String artifactId, String version, String type) throws Exception { Artifact a = artifactFactory.createBuildArtifact(groupId, artifactId, version, type); return a; } protected void deleteLocalArtifact(Artifact artifact) throws Exception {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 09:40:15 UTC 2025 - 13.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
*/ String getBuilderId(); /** * * @param toolchains all toolchains grouped by type * @return this request * @since 3.3.0 */ MavenExecutionRequest setToolchains(Map<String, List<ToolchainModel>> toolchains); /** * * @return all toolchains grouped by type, never {@code null} * @since 3.3.0 */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 18.6K bytes - Viewed (0) -
cmd/sts-handlers_test.go
}) if err != nil { c.Fatalf("export %d: Unable to attach policy: %v", caseNum, err) } } for groupDN, policies := range content.ldapGroupPolicyMappings { _, err := s.adm.AttachPolicyLDAP(ctx, madmin.PolicyAssociationReq{ Policies: policies, Group: groupDN, }) if err != nil { c.Fatalf("export %d: Unable to attach group policy: %v", caseNum, err) } }Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Oct 15 17:00:45 UTC 2025 - 103.4K bytes - Viewed (1) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ApplyTest.java
Path tempDir = Files.createTempDirectory("apply-test"); try { Path pomFile = tempDir.resolve("pom.xml"); String pomContent = PomBuilder.create() .groupId("test") .artifactId("test") .version("1.0.0") .build(); Files.writeString(pomFile, pomContent);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 10:39:17 UTC 2025 - 4.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java
TaskSegment taskSegment, Map<MavenProject, ProjectSegment> projectBuildList) { // gather artifactIds which are not unique so that the respective thread names can be extended with the groupId Set<String> duplicateArtifactIds = projectBuildList.keySet().stream() .map(MavenProject::getArtifactId) .collect(Collectors.groupingBy(Function.identity(), Collectors.counting()))Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 16 03:42:09 UTC 2025 - 8.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanCreatorTest.java
MavenProject p1 = new MavenProject(); p1.setGroupId("g"); p1.setArtifactId("p1"); p1.getBuild().getPlugins().add(new Plugin(org.apache.maven.api.model.Plugin.newBuilder() .groupId("g").artifactId("p2") . .build())) MavenProject p2 = new MavenProject(); p2.setGroupId("g"); p2.setArtifactId("p2");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 28 15:21:19 UTC 2025 - 7.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/AbstractRepositoryMetadata.java
StringBuilder buffer = new StringBuilder(256); buffer.append(LS).append("Repository Metadata").append(LS).append("--------------------------"); buffer.append(LS).append("GroupId: ").append(getGroupId()); buffer.append(LS).append("ArtifactId: ").append(getArtifactId()); buffer.append(LS).append("Metadata Type: ").append(getClass().getName()); return buffer.toString();
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-compat/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java
packagingRegistry = EMPTY_PACKAGING_REGISTRY; } private static Plugin newPlugin(String artifactId, String... goals) { return Plugin.newBuilder() .groupId("org.apache.maven.plugins") .artifactId(artifactId) .executions(Arrays.stream(goals) .map(goal -> PluginExecution.newBuilder()Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 5.8K bytes - Viewed (0)