- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 40 for getRepository (0.39 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverResult.java
* @return An Optional containing the repository from which the version was resolved, * or empty Optional if the repository is unknown */ @Nonnull Optional<Repository> getRepository(Version version);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jan 29 08:17:07 GMT 2025 - 3.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/ArtifactRepositoryMetadata.java
return version != null && ArtifactUtils.isSnapshot(version.getQualifier()); } @Override public ArtifactRepository getRepository() { return null; } @Override public void setRepository(ArtifactRepository remoteRepository) { /* * NOTE: Metadata at the g:a level contains a collection of available versions. After merging, we can't tell
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 3.6K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadata.java
/** * Get the repository the metadata was located in. * * @return the repository */ ArtifactRepository getRepository(); /** * Set the repository the metadata was located in. * * @param remoteRepository the repository */ void setRepository(ArtifactRepository remoteRepository); /** * Get the repository metadata associated with this marker. *Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.6K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Node.java
*/ @Nonnull List<RemoteRepository> getRemoteRepositories(); /** * The repository where this artifact has been downloaded from. */ @Nonnull Optional<RemoteRepository> getRepository(); /** * Traverses this node and potentially its children using the specified visitor. * * @param visitor the visitor to call back, must not be {@code null}Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Mar 24 14:10:11 GMT 2025 - 4.2K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationRule.java
@Override public Violation maybeViolation(final JApiCompatibility member) { if (shouldSkipViolationCheckFor(member)) { return null; } SinceTagStatus since = getRepository().getSince(member); if (since instanceof SinceTagStatus.Present present) { if (present.getVersion().equals(getCurrentVersion())){ return null; } else {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 3.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java
/** * Returns the repository from which the artifact was resolved. * * @return The {@link Repository} instance. */ Repository getRepository(); /** * Returns the file system path to the resolved artifact. * * @return The {@link Path} to the artifact. */ Path getPath(); /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Feb 07 00:45:02 GMT 2025 - 4.7K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java
String getDependencyConflictId(); void addMetadata(ArtifactMetadata metadata); Collection<ArtifactMetadata> getMetadataList(); void setRepository(ArtifactRepository remoteRepository); ArtifactRepository getRepository(); void updateVersion(String version, ArtifactRepository localRepository); String getDownloadUrl(); void setDownloadUrl(String downloadUrl);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.1K bytes - Click Count (0) -
okhttp-osgi-tests/src/test/kotlin/okhttp3/osgi/OsgiTest.kt
"; ${LocalIndexedRepo.PROP_LOCAL_DIR} = '$repoDir'", ) refresh() prepareWorkspace() } } private fun Workspace.prepareWorkspace() { val repositoryPlugin = getRepository(REPO_NAME) // Deploy the bundles in the deployments test directory. repositoryPlugin.deployDirectory(testResourceDir / "deployments") repositoryPlugin.deployClassPath() }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/TransferListenerAdapter.java
if (event == null) { return null; } else { String wagon = event.getWagon().getClass().getName(); ArtifactTransferResource artifact = wrap(event.getWagon().getRepository(), event.getResource()); ArtifactTransferEvent evt; if (event.getException() != null) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java
} /** {@inheritDoc} */ @Override public void setRepository(ArtifactRepository remoteRepository) { artifact.setRepository(remoteRepository); } /** {@inheritDoc} */ @Override public ArtifactRepository getRepository() { return artifact.getRepository(); } /** {@inheritDoc} */ @OverrideCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 9.9K bytes - Click Count (0)