Package org.apache.maven.project
Class ReactorModelPool
- java.lang.Object
-
- org.apache.maven.project.ReactorModelPool
-
class ReactorModelPool extends java.lang.Object
Holds all POM files that are known to the reactor. This allows the project builder to resolve imported POMs from the reactor when building another project's effective model.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
ReactorModelPool.CacheKey
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<ReactorModelPool.CacheKey,java.io.File>
pomFiles
-
Constructor Summary
Constructors Constructor Description ReactorModelPool()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.File
get(java.lang.String groupId, java.lang.String artifactId, java.lang.String version)
void
put(java.lang.String groupId, java.lang.String artifactId, java.lang.String version, java.io.File pomFile)
-
-
-
Field Detail
-
pomFiles
private final java.util.Map<ReactorModelPool.CacheKey,java.io.File> pomFiles
-
-