From 2bdf57d81762f21e72d3c1020c33ac77a9f792f9 Mon Sep 17 00:00:00 2001 From: Caspar Krieger Date: Sun, 18 May 2014 10:51:19 +1000 Subject: [PATCH] Drop dependency versions to 3.7.0 (re #8) --- .../META-INF/MANIFEST.MF | 8 ++++---- .../com.asparck.eclipse.multicursor.target.target | 8 ++++---- .../META-INF/MANIFEST.MF | 2 +- redownload-p2-plugin-jars.sh | 5 +++-- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/com.asparck.eclipse.multicursor.plugin/META-INF/MANIFEST.MF b/com.asparck.eclipse.multicursor.plugin/META-INF/MANIFEST.MF index 9444d95..fc196be 100644 --- a/com.asparck.eclipse.multicursor.plugin/META-INF/MANIFEST.MF +++ b/com.asparck.eclipse.multicursor.plugin/META-INF/MANIFEST.MF @@ -5,10 +5,10 @@ Bundle-SymbolicName: com.asparck.eclipse.multicursor.plugin;singleton:=true Bundle-Version: 0.1.3.qualifier Bundle-Activator: com.asparck.eclipse.multicursor.MultiCursorPlugin Bundle-Vendor: Caspar Krieger -Require-Bundle: org.eclipse.ui;bundle-version="3.8.0", - org.eclipse.core.runtime;bundle-version="3.8.0", - org.eclipse.jface.text;bundle-version="3.8.0", - org.eclipse.ui.workbench.texteditor;bundle-version="3.8.0" +Require-Bundle: org.eclipse.ui;bundle-version="3.7.0", + org.eclipse.core.runtime;bundle-version="3.7.0", + org.eclipse.jface.text;bundle-version="3.7.0", + org.eclipse.ui.workbench.texteditor;bundle-version="3.7.0" Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-ActivationPolicy: lazy Export-Package: com.asparck.eclipse.multicursor.util diff --git a/com.asparck.eclipse.multicursor.target/com.asparck.eclipse.multicursor.target.target b/com.asparck.eclipse.multicursor.target/com.asparck.eclipse.multicursor.target.target index 80ae252..0c4b184 100644 --- a/com.asparck.eclipse.multicursor.target/com.asparck.eclipse.multicursor.target.target +++ b/com.asparck.eclipse.multicursor.target/com.asparck.eclipse.multicursor.target.target @@ -1,10 +1,10 @@ - + - - - + + + diff --git a/com.asparck.eclipse.multicursor.tests/META-INF/MANIFEST.MF b/com.asparck.eclipse.multicursor.tests/META-INF/MANIFEST.MF index d1028ea..4c81201 100644 --- a/com.asparck.eclipse.multicursor.tests/META-INF/MANIFEST.MF +++ b/com.asparck.eclipse.multicursor.tests/META-INF/MANIFEST.MF @@ -6,7 +6,7 @@ Bundle-Version: 0.1.3.qualifier Bundle-Activator: com.asparck.eclipse.multicursor.tests.Activator Bundle-Vendor: Caspar Krieger Require-Bundle: org.eclipse.core.runtime, - org.junit;bundle-version="4.10.0", + org.junit;bundle-version="4.8.1", com.asparck.eclipse.multicursor.plugin, org.eclipse.swt Bundle-RequiredExecutionEnvironment: JavaSE-1.6 diff --git a/redownload-p2-plugin-jars.sh b/redownload-p2-plugin-jars.sh index ac4fa5d..cb3e95a 100755 --- a/redownload-p2-plugin-jars.sh +++ b/redownload-p2-plugin-jars.sh @@ -11,13 +11,14 @@ set -e -UPDATE_SITE_BASE_URL=http://download.eclipse.org/eclipse/updates/3.8/R-3.8.2-201301310800/plugins/ +#UPDATE_SITE_BASE_URL=http://download.eclipse.org/eclipse/updates/3.8/R-3.8.2-201301310800/plugins/ +UPDATE_SITE_BASE_URL=http://download.eclipse.org/eclipse/updates/3.7/R-3.7.2-201202080800/plugins/ for f in *.jar; do # echo "Processing ${f}" if ! unzip -t ${f} 2>&1 > /dev/null ; then echo "*** ${f} appears corrupt, redownloading" - wget "${BASE_URL}${f}.pack.gz" + wget "${UPDATE_SITE_BASE_URL}${f}.pack.gz" unpack200 -r "${f}.pack.gz" "${f}" fi done