private String stagingRepoId()

in src/main/java/org/apache/maven/plugins/site/deploy/SiteStageDeployMojo.java [216:226]


    private String stagingRepoId() {
        if (stagingRepositoryId != null) {
            return stagingRepositoryId;
        }

        try {
            return getSite(project).getId();
        } catch (MojoExecutionException ex) {
            return "stagingSite";
        }
    }