Interface PublishingRepositoryFacade
-
- All Known Subinterfaces:
PublishingRepository
- All Known Implementing Classes:
PublishingRepositoryImpl
public interface PublishingRepositoryFacade
Representation of the p2 repositories that receive the artifacts produced by the build.This interface is a subset of
PublishingRepository
, limited to methods required from the Maven class loader.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.io.File>
getArtifactLocations()
The file system locations of the build artifacts, indexed by classifier.java.util.Set<java.lang.Object>
getInstallableUnits()
Returns theIInstallableUnit
s in the publishing repository.
-
-
-
Method Detail
-
getArtifactLocations
java.util.Map<java.lang.String,java.io.File> getArtifactLocations()
The file system locations of the build artifacts, indexed by classifier.- Returns:
- a map from classifier (
null
for main artifact) to artifact file locations in the target directory
-
getInstallableUnits
java.util.Set<java.lang.Object> getInstallableUnits()
Returns theIInstallableUnit
s in the publishing repository.
-
-