- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 92 for getScope (0.03 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/MavenArtifactMetadata.java
} public Object getDatum() { return datum; } public void setDatum(Object datum) { this.datum = datum; } public String getScope() { return scope; } public void setScope(String scope) { this.scope = scope; } @Override public String toString() { return getGroupId() + ":" + getArtifactId() + ":" + getVersion() + ":"Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/RepositorySystemTest.java
} /** * check ut.simple:artifact:1.0 dependencies */ private void checkUtSimpleArtifactDependencies(Dependency dep1, Dependency dep2) { assertEquals("compile", dep1.getScope()); assertFalse(dep1.isOptional(), "Expected " + dep1 + ".isOptional() to return false"); assertEquals(0, dep1.getExclusions().size()); Artifact depArtifact = dep1.getArtifact();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java
assertNotNull(entry1); assertNotNull(entry2); assertEquals(DirectoryCacheScope.IMMEDIATE_CHILDREN, entry1.getScope()); assertEquals(DirectoryCacheScope.RECURSIVE_TREE, entry2.getScope()); // Update first directory cache List<SmbFile> files1 = Arrays.asList(mockFile1); directoryLeaseManager.updateDirectoryCache(dir1, files1);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 14.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
currentElement.addAnnotationTypeName(child.getNameAsString()); } } private String extractName(ClassOrInterfaceType type) { if (type.getScope().isPresent()) { return extractName(type.getScope().get()) + "." + type.getNameAsString(); } return type.getNameAsString(); } private String getJavadocComment(NodeWithJavadoc<?> node) {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProject.java
return session.requireType(type); } @Nonnull @Override public DependencyScope getScope() { String scope = dependency.getScope(); if (scope == null) { scope = ""; } return session.requireDependencyScope(scope); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Mar 24 22:23:23 UTC 2025 - 8.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilter.java
private final String scope; public ScopeArtifactFilter(String scope) { this.scope = scope; addScopeInternal(scope); } public String getScope() { return scope; } @Override public int hashCode() { int hash = 17; hash = hash * 31 + (scope != null ? scope.hashCode() : 0); return hash; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DependencyCoordinates.java
Type getType(); /** * {@return the time at which the dependency will be used} * It may be, for example, at compile time only, at run time, or at test time. */ @Nonnull DependencyScope getScope(); /** * Returns whether the dependency is optional, mandatory, or of unspecified obligation. * * @return {@code Boolean.TRUE} and {@code Boolean.FALSE} if optional, or {@code null} if unspecified
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 05 14:29:21 UTC 2025 - 2.5K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t05/ProjectInheritanceTest.java
Artifact artifact = (Artifact) aSet; System.out.println("Artifact: " + artifact.getDependencyConflictId() + " " + artifact.getVersion() + " Scope: " + artifact.getScope()); assertTrue( artifact.getVersion().equals("1.0"), "Incorrect version for " + artifact.getDependencyConflictId()); } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 2.9K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java
String getGroupId(); String getArtifactId(); String getVersion(); void setVersion(String version); String getScope(); String getType(); String getClassifier(); boolean hasClassifier(); File getFile(); void setFile(File destination); String getBaseVersion();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/Maven3CompatDependenciesValidator.java
if ("org.apache.maven".equals(dependency.getArtifact().getGroupId()) && "maven-compat".equals(dependency.getArtifact().getArtifactId()) && !DependencyScope.TEST.is(dependency.getScope())) { pluginValidationManager.reportPluginValidationIssue( PluginValidationManager.IssueLocality.EXTERNAL, session, pluginArtifact,
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0)