Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.epp.packaging.core/src/org/eclipse/epp/packaging/core/configuration/PackagerConfiguration.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/org.eclipse.epp.packaging.core/src/org/eclipse/epp/packaging/core/configuration/PackagerConfiguration.java b/plugins/org.eclipse.epp.packaging.core/src/org/eclipse/epp/packaging/core/configuration/PackagerConfiguration.java
index c3191e1e..1ed36c6e 100644
--- a/plugins/org.eclipse.epp.packaging.core/src/org/eclipse/epp/packaging/core/configuration/PackagerConfiguration.java
+++ b/plugins/org.eclipse.epp.packaging.core/src/org/eclipse/epp/packaging/core/configuration/PackagerConfiguration.java
@@ -190,6 +190,13 @@ public class PackagerConfiguration implements IModifiablePackagerConfiguration {
+ newVersion;
result.add( new Status( IStatus.INFO, Activator.PLUGIN_ID, message ) );
}
+ if( highestVersion.compareTo( featureVersion ) < 0 ) {
+ String message = "Only lower version of feature " //$NON-NLS-1$
+ + featureId
+ + " available: " //$NON-NLS-1$
+ + newVersion;
+ result.add( new Status( IStatus.WARNING, Activator.PLUGIN_ID, message ) );
+ }
}
}

Back to the top