{
List<String> snapshots = projectHelper.checkForNonReactorSnapshots("develop", developProjects);
if(!snapshots.isEmpty())
{
String details = Joiner.on(ls).join(snapshots);
throw new UnresolvedSnapshotsException("Cannot start a release due to snapshot dependencies:" + ls + details);
}
}
if(ctx.isPushReleases() || !ctx.isNoTag())
{