Skip to content
This repository was archived by the owner on Nov 21, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions instasearch.feature/.project
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.pde.FeatureNature</nature>
</natures>
</projectDescription>
6 changes: 6 additions & 0 deletions instasearch.site/.project
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.pde.UpdateSiteNature</nature>
</natures>
</projectDescription>
24 changes: 16 additions & 8 deletions instasearch/.classpath
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry excluding="**/.svn/" kind="src" path="src"/>
<classpathentry excluding="**/.svn/" kind="src" path="test"/>
<classpathentry kind="output" path="bin"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry exported="true" kind="lib" path="lib/org.apache.lucene_2.9.1.v201101211721.jar"/>
<classpathentry exported="true" kind="lib" path="lib/org.apache.lucene.analysis_2.9.1.v201101211721.jar"/>
<classpathentry exported="true" kind="lib" path="lib/org.apache.lucene.core_2.9.1.v201101211721.jar"/>
<classpathentry exported="true" kind="lib" path="lib/org.apache.lucene.highlighter_2.9.1.v20100421-0704.jar"/>
<classpathentry exported="true" kind="lib" path="lib/org.apache.lucene.memory_2.9.1.v20100421-0704.jar"/>
<classpathentry exported="true" kind="lib" path="lib/org.apache.lucene.misc_2.9.1.v20100421-0704.jar"/>
<classpathentry exported="true" kind="lib" path="lib/org.apache.lucene.queries_2.9.1.v20100421-0704.jar"/>
<classpathentry exported="true" kind="lib" path="lib/org.apache.lucene.snowball_2.9.1.v20100421-0704.jar"/>
<classpathentry exported="true" kind="lib" path="lib/org.apache.lucene.spellchecker_2.9.1.v20100421-0704.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
6 changes: 6 additions & 0 deletions instasearch/.project
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,14 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
Expand Down
23 changes: 12 additions & 11 deletions instasearch/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: InstaSearch
Bundle-SymbolicName: it.unibz.instasearch;singleton:=true
Bundle-Version: 1.5.7
Bundle-Version: 1.5.8
Bundle-Activator: it.unibz.instasearch.InstaSearchPlugin
Bundle-DocURL: https://github.com/ajermakovics/eclipse-instasearch
Bundle-UpdateLocation: http://dl.bintray.com/ajermakovics/InstaSearch/
Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
org.apache.lucene;bundle-version="[2.9.1,2.9.2]",
org.apache.lucene.analysis;bundle-version="[2.9.1,2.9.2)",
org.apache.commons.lang,
org.eclipse.ui.ide,
org.eclipse.ui.editors,
Expand All @@ -20,15 +18,18 @@ Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
org.eclipse.debug.ui,
org.eclipse.jdt.ui;resolution:=optional,
org.eclipse.jdt.core;resolution:=optional,
org.junit;bundle-version="4.0.0";resolution:=optional,
org.apache.lucene.highlighter;bundle-version="[2.9.1,2.9.2)",
org.apache.lucene.memory;bundle-version="[2.9.1,2.9.2)",
org.apache.lucene.misc;bundle-version="[2.9.1,2.9.2)",
org.apache.lucene.queries;bundle-version="[2.9.1,2.9.2)",
org.apache.lucene.snowball;bundle-version="[2.9.1,2.9.2)",
org.apache.lucene.spellchecker;bundle-version="[2.9.1,2.9.2)"
org.junit;bundle-version="4.0.0";resolution:=optional
Bundle-Vendor: Andrejs Jermakovics
Bundle-ClassPath: .
Bundle-ClassPath: .,
lib/org.apache.lucene_2.9.1.v201101211721.jar,
lib/org.apache.lucene.analysis_2.9.1.v201101211721.jar,
lib/org.apache.lucene.core_2.9.1.v201101211721.jar,
lib/org.apache.lucene.highlighter_2.9.1.v20100421-0704.jar,
lib/org.apache.lucene.memory_2.9.1.v20100421-0704.jar,
lib/org.apache.lucene.misc_2.9.1.v20100421-0704.jar,
lib/org.apache.lucene.queries_2.9.1.v20100421-0704.jar,
lib/org.apache.lucene.snowball_2.9.1.v20100421-0704.jar,
lib/org.apache.lucene.spellchecker_2.9.1.v20100421-0704.jar
Eclipse-LazyStart: false
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Expand Down
11 changes: 10 additions & 1 deletion instasearch/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ bin.includes = plugin.xml,\
META-INF/,\
.,\
icons/,\
plugin.properties
plugin.properties,\
lib/org.apache.lucene_2.9.1.v201101211721.jar,\
lib/org.apache.lucene.analysis_2.9.1.v201101211721.jar,\
lib/org.apache.lucene.core_2.9.1.v201101211721.jar,\
lib/org.apache.lucene.highlighter_2.9.1.v20100421-0704.jar,\
lib/org.apache.lucene.memory_2.9.1.v20100421-0704.jar,\
lib/org.apache.lucene.misc_2.9.1.v20100421-0704.jar,\
lib/org.apache.lucene.queries_2.9.1.v20100421-0704.jar,\
lib/org.apache.lucene.snowball_2.9.1.v20100421-0704.jar,\
lib/org.apache.lucene.spellchecker_2.9.1.v20100421-0704.jar
bin.excludes = icons/sample.gif
src.excludes = test/
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.