You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// a specific version cannot be older than the core version
542
+
// validate the specific version if one was requested
543
543
if (specificVersion != null) {
544
-
if (Util.isNewerThan(MIN_VERSION, specificVersion)) {
545
-
log(org.apache.felix.resolver.Logger.LOG_ERROR, "the version defined [" + specificVersion + "] cannot be used, version cannot be older than [" + MIN_VERSION + "]");
544
+
if (specificVersion.equals(coreVersion)) {
545
+
// requested version matches the current core version, just use it
"Lucee version requested [" + specificVersion + "] via system property 'lucee.version' or environment variable 'LUCEE_VERSION' cannot be used, this loader requires at least version ["
log(org.apache.felix.resolver.Logger.LOG_ERROR, "the version defined [" + specificVersion + "] cannot be used, version cannot be newver than [" + MAX_VERSION
550
-
+ "], update yout lucee.jar to use this version.");
"Lucee version requested [" + specificVersion + "] via system property 'lucee.version' or environment variable 'LUCEE_VERSION' cannot be used, this loader only supports versions up to ["
0 commit comments