- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for DependencyScope (0.05 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnums.java
* @param dependencyScopes the dependency scopes associated with this path scope * @return a new PathScope instance */ static PathScope pathScope(String id, ProjectScope projectScope, DependencyScope... dependencyScopes) { return new DefaultPathScope(id, projectScope, dependencyScopes); } /** * Creates a new ProjectScope instance with the specified ID. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java
* It may be, for example, at compile time only, at run time or at test time. * * @see DependencyCoordinates#getScope() */ @Nonnull DependencyScope getScope(); /** * Returns whether the dependency is optional or mandatory. * Unlike {@link DependencyCoordinates}, the obligation of a {@code Dependency} is always present.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 2.8K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PathScopeProvider.java
* public Collection<PathScope> provides() { * return Collections.singleton(pathScope("integration-test", * ProjectScope.TEST, DependencyScope.TEST)); * } * } * </pre> * * @see org.apache.maven.api.PathScope * @see org.apache.maven.api.spi.ExtensibleEnumProvider * @since 4.0.0 */ @Experimental @Consumer @Named
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
*/ @Nonnull ProjectScope requireProjectScope(@Nonnull String id); /** * Obtain the {@link DependencyScope} from the specified {@code id}. * <p> * Shortcut for {@code DependencyScope.forId(...)} with a verification that the given identifier exists. * * @param id the identifier of the scope (case-sensitive)
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0)