Interface NormalizationProvider.Context
-
- Enclosing interface:
- NormalizationProvider
public static interface NormalizationProvider.Context
Allows configuring the runtime classpath normalization of a project.- Since:
- 1.15
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NormalizationProvider.Context
configureRuntimeClasspathNormalization(java.util.function.Consumer<NormalizationProvider.RuntimeClasspathNormalization> action)
Allows configuring the runtime classpath normalization.MavenProject
getProject()
The project being configured.MavenSession
getSession()
The session associated with the project.
-
-
-
Method Detail
-
getProject
MavenProject getProject()
The project being configured.- Since:
- 1.15
-
getSession
MavenSession getSession()
The session associated with the project.- Since:
- 1.15
-
configureRuntimeClasspathNormalization
NormalizationProvider.Context configureRuntimeClasspathNormalization(java.util.function.Consumer<NormalizationProvider.RuntimeClasspathNormalization> action)
Allows configuring the runtime classpath normalization.- Parameters:
action
- an action to configure the runtime classpath normalization- Since:
- 1.15
-
-