104105106107108109110111
/** * @return The most recent non-snapshot version of Errai. */ public String resolveErraiVersion() { DependencyArtifact common = DependencyArtifact.ErraiCommon; return getHighestStableVersion(common.getGroupId(), common.getArtifactId()); }
137138139140141142143144