Skip to content

Commit

Permalink
Drop dependency versions to 3.7.0 (re #8)
Browse files Browse the repository at this point in the history
  • Loading branch information
caspark committed May 18, 2014
1 parent 8f59e35 commit 2bdf57d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
8 changes: 4 additions & 4 deletions com.asparck.eclipse.multicursor.plugin/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?><target name="target" sequenceNumber="5">
<?pde version="3.8"?><target name="target" sequenceNumber="8">
<locations>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.sdk.ide" version="3.8.2.M20130131-0800"/>
<unit id="org.eclipse.platform.sdk" version="3.8.2.M20130131-0800"/>
<repository location="http://download.eclipse.org/eclipse/updates/3.8/"/>
<unit id="org.eclipse.platform.sdk" version="3.7.2.M20120208-0800"/>
<unit id="org.eclipse.sdk.ide" version="3.7.2.M20120208-0800"/>
<repository location="http://download.eclipse.org/eclipse/updates/3.7"/>
</location>
</locations>
</target>
2 changes: 1 addition & 1 deletion com.asparck.eclipse.multicursor.tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions redownload-p2-plugin-jars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2bdf57d

Please # to comment.