in maven-artifact-transfer-api/src/main/java/org/apache/maven/shared/transfer/project/deploy/internal/DefaultProjectDeployer.java [128:144]
private void validateParameters( ProjectBuildingRequest buildingRequest,
ProjectDeployerRequest projectDeployerRequest,
ArtifactRepository artifactRepository )
{
if ( buildingRequest == null )
{
throw new IllegalArgumentException( "The parameter buildingRequest is not allowed to be null." );
}
if ( projectDeployerRequest == null )
{
throw new IllegalArgumentException( "The parameter projectDeployerRequest is not allowed to be null." );
}
if ( artifactRepository == null )
{
throw new IllegalArgumentException( "The parameter artifactRepository is not allowed to be null." );
}
}