Package org.eclipse.aether.impl.scope
Interface BuildScope
-
public interface BuildScope
Build scope is certain combination ofProjectPathandBuildPath.- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<BuildPath>getBuildPaths()The build paths this scope belongs to.java.lang.StringgetId()The label.java.util.Set<ProjectPath>getProjectPaths()The project paths this scope belongs to.intorder()Returns the "order" of this scope, usable to sort against other instances.
-
-
-
Method Detail
-
getId
java.lang.String getId()
The label.
-
getProjectPaths
java.util.Set<ProjectPath> getProjectPaths()
The project paths this scope belongs to.
-
getBuildPaths
java.util.Set<BuildPath> getBuildPaths()
The build paths this scope belongs to.
-
order
int order()
Returns the "order" of this scope, usable to sort against other instances. Expected natural order is "main-compile", "test-compile"... (basically like the processing order).Note: this order is unrelated to
ProjectPath.order()andBuildPath.order()and should be used only to sort build scope instances.
-
-