- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for isProjectAware (0.53 sec)
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java
* are examples of such repositories. * * @return {@code true} if the repository is backed by actual projects, {@code false} otherwise. * @since 3.0-beta-1 */ boolean isProjectAware(); /** * @param authentication authentication * @since 3.0-alpha-3 */ void setAuthentication(Authentication authentication); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.3K bytes - Viewed (1) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java
return artifact; } @Override public List<String> findVersions(Artifact artifact) { return Collections.emptyList(); } @Override public boolean isProjectAware() { return false; } @Override public Authentication getAuthentication() { return authentication; } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
@Override public List<String> findVersions(org.apache.maven.artifact.Artifact artifact) { return Collections.emptyList(); } @Override public boolean isProjectAware() { return false; } @Override public void setAuthentication(Authentication authentication) {} @Override public Authentication getAuthentication() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.1K bytes - Viewed (0)