- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 399 for getVersion (1.38 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverResult.java
/** * * @since 4.0.0 */ @Experimental public interface VersionResolverResult extends Result<VersionResolverRequest> { @Nonnull List<Exception> getExceptions(); @Nonnull Version getVersion(); @Nonnull Optional<Repository> getRepository();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 1.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
} private MavenProject getMavenProject(Project project) { return ((DefaultProject) project).getProject(); } private static InternalSession getSession(Project project) { return ((DefaultProject) project).getSession(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Dec 17 16:17:01 UTC 2025 - 10.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestMavenWorkspaceReader.java
&& ARTIFACT_ID.equals(artifact.getArtifactId()) && VERSION.equals(artifact.getVersion())) { Model m = new Model(); m.setArtifactId(ARTIFACT_ID); m.setGroupId(GROUP_ID); m.setVersion(VERSION); Repository repository = new Repository(); repository.setId(REPO_ID); repository.setUrl(REPO_URL);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java
descriptor.setGroupId(plugin.getGroupId()); descriptor.setArtifactId(plugin.getArtifactId()); descriptor.setPlugin(plugin); descriptor.setVersion(plugin.getVersion()); final MojoDescriptor mojoDescriptor = new MojoDescriptor(); mojoDescriptor.setPluginDescriptor(descriptor); return mojoDescriptor; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.5K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/DistributionManagementArtifactRelocationSource.java
relocation.getGroupId(), relocation.getArtifactId(), null, null, relocation.getVersion(), relocation.getMessage()); LOGGER.debug( "The artifact {} has been relocated to {}: {}",
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java
String realmId = "coreExtension>" + extension.getGroupId() + ":" + extension.getArtifactId() + ":" + extension.getVersion(); final ClassRealm realm = classWorld.newRealm(realmId, null); Set<String> providedArtifacts = Collections.emptySet(); String classLoadingStrategy = extension.getClassLoadingStrategy();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 13.3K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java
isAny(relocation.target.getExtension()) ? null : relocation.target.getExtension(), isAny(relocation.target.getVersion()) ? null : relocation.target.getVersion(), relocation.global ? "User global relocation" : "User project relocation"); LOGGER.debug( "The artifact {} has been relocated to {}: {}",
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
.groupId(requireNonNull(dependency, "dependency").getGroupId()) .artifactId(dependency.getArtifactId()) .version(dependency.getVersion().toString()) .classifier(dependency.getClassifier()) .extension(dependency.getExtension()) .type(dependency.getType().id()) .scope(dependency.getScope().id())
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/artifact/InvalidDependencyVersionException.java
public InvalidDependencyVersionException( String projectId, Dependency dependency, File pomFile, InvalidVersionSpecificationException cause) { super(projectId, formatLocationInPom(dependency), dependency.getVersion(), pomFile, cause); this.dependency = dependency; } private static String formatLocationInPom(Dependency dependency) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java
PluginDescriptor pd = mojoDescriptor.getPluginDescriptor(); return pluginKey(pd.getGroupId(), pd.getArtifactId(), pd.getVersion()); } private String pluginKey(Artifact pluginArtifact) { return pluginKey(pluginArtifact.getGroupId(), pluginArtifact.getArtifactId(), pluginArtifact.getVersion()); } private void mayReportInline(RepositorySystemSession session, IssueLocality locality, String issue) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:32 UTC 2025 - 17.5K bytes - Viewed (0)