- Sort Score
- Result 10 results
- Languages All
Results 21 - 25 of 25 for SetGroupID (0.21 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
PluginDescriptor pluginDescriptor = new PluginDescriptor(); pluginDescriptor.setSource(source); pluginDescriptor.setGroupId(extractGroupId(c)); pluginDescriptor.setArtifactId(extractArtifactId(c)); pluginDescriptor.setVersion(extractVersion(c)); pluginDescriptor.setGoalPrefix(extractGoalPrefix(c));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java
// // We should get a whole slew of dependencies resolving this artifact transitively // Dependency d = new Dependency(); d.setGroupId("org.apache.maven.its"); d.setArtifactId("b"); d.setVersion("0.1"); d.setScope(Artifact.SCOPE_COMPILE); Artifact artifact = repositorySystem.createDependencyArtifact(d);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
if (relocation != null) { if (relocation.getGroupId() != null) { artifact.setGroupId(relocation.getGroupId()); relocatedArtifact = artifact; project.setGroupId(relocation.getGroupId()); } if (relocation.getArtifactId() != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java
} } @Override public void selectVersion(String version) { this.version = version; setBaseVersionInternal(version); } @Override public void setGroupId(String groupId) { this.groupId = groupId; } @Override public void setArtifactId(String artifactId) { this.artifactId = artifactId; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.6K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
} private MavenProject createMavenProject(String groupId, String artifactId) { MavenProject project = new MavenProject(); project.setGroupId(groupId); project.setArtifactId(artifactId); return project; } static String stripAnsiCodes(String msg) { return msg.replaceAll("\u001b\\[[;\\d]*[ -/]*[@-~]", ""); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0)