rere 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.classpath +260 -0
- data/.gitignore +28 -0
- data/.project +14 -0
- data/.ruby-version +1 -0
- data/.settings/org.eclim.prefs +3 -0
- data/.settings/org.eclipse.jdt.core.prefs +5 -0
- data/.settings/org.eclipse.jdt.ui.prefs +2 -0
- data/Gemfile +7 -0
- data/LICENSE +22 -0
- data/README.md +44 -0
- data/Rakefile +65 -0
- data/bin/solr +61 -0
- data/example/config/solr.yml +23 -0
- data/example/log/.gitkeep +0 -0
- data/example/solr/README.txt +63 -0
- data/example/solr/collection1/README.txt +50 -0
- data/example/solr/collection1/conf/admin-extra.html +24 -0
- data/example/solr/collection1/conf/admin-extra.menu-bottom.html +25 -0
- data/example/solr/collection1/conf/admin-extra.menu-top.html +25 -0
- data/example/solr/collection1/conf/currency.xml +67 -0
- data/example/solr/collection1/conf/elevate.xml +38 -0
- data/example/solr/collection1/conf/lang/contractions_ca.txt +8 -0
- data/example/solr/collection1/conf/lang/contractions_fr.txt +15 -0
- data/example/solr/collection1/conf/lang/contractions_ga.txt +5 -0
- data/example/solr/collection1/conf/lang/contractions_it.txt +23 -0
- data/example/solr/collection1/conf/lang/hyphenations_ga.txt +5 -0
- data/example/solr/collection1/conf/lang/stemdict_nl.txt +6 -0
- data/example/solr/collection1/conf/lang/stoptags_ja.txt +420 -0
- data/example/solr/collection1/conf/lang/stopwords_ar.txt +125 -0
- data/example/solr/collection1/conf/lang/stopwords_bg.txt +193 -0
- data/example/solr/collection1/conf/lang/stopwords_ca.txt +220 -0
- data/example/solr/collection1/conf/lang/stopwords_cz.txt +172 -0
- data/example/solr/collection1/conf/lang/stopwords_da.txt +108 -0
- data/example/solr/collection1/conf/lang/stopwords_de.txt +292 -0
- data/example/solr/collection1/conf/lang/stopwords_el.txt +78 -0
- data/example/solr/collection1/conf/lang/stopwords_en.txt +54 -0
- data/example/solr/collection1/conf/lang/stopwords_es.txt +354 -0
- data/example/solr/collection1/conf/lang/stopwords_eu.txt +99 -0
- data/example/solr/collection1/conf/lang/stopwords_fa.txt +313 -0
- data/example/solr/collection1/conf/lang/stopwords_fi.txt +95 -0
- data/example/solr/collection1/conf/lang/stopwords_fr.txt +184 -0
- data/example/solr/collection1/conf/lang/stopwords_ga.txt +110 -0
- data/example/solr/collection1/conf/lang/stopwords_gl.txt +161 -0
- data/example/solr/collection1/conf/lang/stopwords_hi.txt +235 -0
- data/example/solr/collection1/conf/lang/stopwords_hu.txt +209 -0
- data/example/solr/collection1/conf/lang/stopwords_hy.txt +46 -0
- data/example/solr/collection1/conf/lang/stopwords_id.txt +359 -0
- data/example/solr/collection1/conf/lang/stopwords_it.txt +301 -0
- data/example/solr/collection1/conf/lang/stopwords_ja.txt +127 -0
- data/example/solr/collection1/conf/lang/stopwords_lv.txt +172 -0
- data/example/solr/collection1/conf/lang/stopwords_nl.txt +117 -0
- data/example/solr/collection1/conf/lang/stopwords_no.txt +192 -0
- data/example/solr/collection1/conf/lang/stopwords_pt.txt +251 -0
- data/example/solr/collection1/conf/lang/stopwords_ro.txt +233 -0
- data/example/solr/collection1/conf/lang/stopwords_ru.txt +241 -0
- data/example/solr/collection1/conf/lang/stopwords_sv.txt +131 -0
- data/example/solr/collection1/conf/lang/stopwords_th.txt +119 -0
- data/example/solr/collection1/conf/lang/stopwords_tr.txt +212 -0
- data/example/solr/collection1/conf/lang/userdict_ja.txt +29 -0
- data/example/solr/collection1/conf/mapping-FoldToASCII.txt +3813 -0
- data/example/solr/collection1/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/example/solr/collection1/conf/protwords.txt +21 -0
- data/example/solr/collection1/conf/schema.xml +1125 -0
- data/example/solr/collection1/conf/scripts.conf +24 -0
- data/example/solr/collection1/conf/solrconfig.xml +1816 -0
- data/example/solr/collection1/conf/spellings.txt +2 -0
- data/example/solr/collection1/conf/stopwords.txt +14 -0
- data/example/solr/collection1/conf/synonyms.txt +29 -0
- data/example/solr/collection1/conf/update-script.js +53 -0
- data/example/solr/collection1/conf/velocity/VM_global_library.vm +170 -0
- data/example/solr/collection1/conf/velocity/browse.vm +50 -0
- data/example/solr/collection1/conf/velocity/cluster.vm +9 -0
- data/example/solr/collection1/conf/velocity/clusterResults.vm +12 -0
- data/example/solr/collection1/conf/velocity/debug.vm +17 -0
- data/example/solr/collection1/conf/velocity/did_you_mean.vm +4 -0
- data/example/solr/collection1/conf/velocity/facet_fields.vm +15 -0
- data/example/solr/collection1/conf/velocity/facet_pivot.vm +3 -0
- data/example/solr/collection1/conf/velocity/facet_queries.vm +3 -0
- data/example/solr/collection1/conf/velocity/facet_ranges.vm +15 -0
- data/example/solr/collection1/conf/velocity/facets.vm +5 -0
- data/example/solr/collection1/conf/velocity/footer.vm +17 -0
- data/example/solr/collection1/conf/velocity/head.vm +32 -0
- data/example/solr/collection1/conf/velocity/header.vm +3 -0
- data/example/solr/collection1/conf/velocity/hit.vm +11 -0
- data/example/solr/collection1/conf/velocity/hitGrouped.vm +24 -0
- data/example/solr/collection1/conf/velocity/join-doc.vm +4 -0
- data/example/solr/collection1/conf/velocity/jquery.autocomplete.css +48 -0
- data/example/solr/collection1/conf/velocity/jquery.autocomplete.js +763 -0
- data/example/solr/collection1/conf/velocity/layout.vm +20 -0
- data/example/solr/collection1/conf/velocity/main.css +208 -0
- data/example/solr/collection1/conf/velocity/product-doc.vm +27 -0
- data/example/solr/collection1/conf/velocity/query.vm +42 -0
- data/example/solr/collection1/conf/velocity/queryGroup.vm +19 -0
- data/example/solr/collection1/conf/velocity/querySpatial.vm +40 -0
- data/example/solr/collection1/conf/velocity/richtext-doc.vm +114 -0
- data/example/solr/collection1/conf/velocity/suggest.vm +3 -0
- data/example/solr/collection1/conf/velocity/tabs.vm +6 -0
- data/example/solr/collection1/conf/xslt/example.xsl +132 -0
- data/example/solr/collection1/conf/xslt/example_atom.xsl +67 -0
- data/example/solr/collection1/conf/xslt/example_rss.xsl +66 -0
- data/example/solr/collection1/conf/xslt/luke.xsl +337 -0
- data/example/solr/collection1/conf/xslt/updateXml.xsl +70 -0
- data/example/solr/collection1/data/index/segments.gen +0 -0
- data/example/solr/collection1/data/index/segments_1 +0 -0
- data/example/solr/data/development/index/segments.gen +0 -0
- data/example/solr/data/development/index/segments_1 +0 -0
- data/example/solr/solr.xml +53 -0
- data/example/solr/zoo.cfg +17 -0
- data/lib/rere.rb +66 -0
- data/lib/rere/railtie.rb +8 -0
- data/lib/rere/server.rb +380 -0
- data/lib/rere/tasks/solr.rake +47 -0
- data/lib/rere/version.rb +3 -0
- data/pom.xml +168 -0
- data/rere.gemspec +26 -0
- data/server/README.txt +78 -0
- data/server/cloud-scripts/zkcli.bat +12 -0
- data/server/cloud-scripts/zkcli.sh +14 -0
- data/server/contexts/solr-jetty-context.xml +8 -0
- data/server/etc/create-solrtest.keystore.sh +37 -0
- data/server/etc/jetty.xml +205 -0
- data/server/etc/logging.properties +38 -0
- data/server/etc/solrtest.keystore +0 -0
- data/server/etc/webdefault.xml +527 -0
- data/server/exampledocs/books.csv +11 -0
- data/server/exampledocs/books.json +51 -0
- data/server/exampledocs/gb18030-example.xml +32 -0
- data/server/exampledocs/hd.xml +56 -0
- data/server/exampledocs/ipod_other.xml +60 -0
- data/server/exampledocs/ipod_video.xml +40 -0
- data/server/exampledocs/manufacturers.xml +75 -0
- data/server/exampledocs/mem.xml +77 -0
- data/server/exampledocs/money.xml +65 -0
- data/server/exampledocs/monitor.xml +35 -0
- data/server/exampledocs/monitor2.xml +34 -0
- data/server/exampledocs/mp500.xml +43 -0
- data/server/exampledocs/post.jar +0 -0
- data/server/exampledocs/post.sh +30 -0
- data/server/exampledocs/sd500.xml +38 -0
- data/server/exampledocs/solr.xml +38 -0
- data/server/exampledocs/test_utf8.sh +93 -0
- data/server/exampledocs/utf8-example.xml +42 -0
- data/server/exampledocs/vidcard.xml +62 -0
- data/server/lib/ext/jcl-over-slf4j-1.6.6.jar +0 -0
- data/server/lib/ext/jul-to-slf4j-1.6.6.jar +0 -0
- data/server/lib/ext/log4j-1.2.16.jar +0 -0
- data/server/lib/ext/slf4j-api-1.6.6.jar +0 -0
- data/server/lib/ext/slf4j-log4j12-1.6.6.jar +0 -0
- data/server/lib/jetty-continuation-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-deploy-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-http-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-io-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-jmx-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-security-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-server-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-servlet-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-util-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-webapp-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-xml-8.1.8.v20121106.jar +0 -0
- data/server/lib/servlet-api-3.0.jar +0 -0
- data/server/resources/log4j.properties +19 -0
- data/server/solr/README.txt +63 -0
- data/server/solr/solr.xml +53 -0
- data/server/solr/zoo.cfg +17 -0
- data/server/start.jar +0 -0
- data/server/webapps/solr.war +0 -0
- data/solr/lib/solr-winds-0.1.jar +0 -0
- metadata +284 -0
data/.classpath
ADDED
@@ -0,0 +1,260 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<classpath>
|
3
|
+
<classpathentry kind="output" path="target/classes"/>
|
4
|
+
<classpathentry kind="var" path="M2_REPO/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar" sourcepath="M2_REPO/javax/servlet/servlet-api/2.5/servlet-api-2.5-sources.jar"/>
|
5
|
+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
|
6
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-test-framework/4.3.1/lucene-test-framework-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-test-framework/4.3.1/lucene-test-framework-4.3.1-sources.jar"/>
|
7
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-core/4.3.1/lucene-core-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-core/4.3.1/lucene-core-4.3.1-sources.jar"/>
|
8
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-codecs/4.3.1/lucene-codecs-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-codecs/4.3.1/lucene-codecs-4.3.1-sources.jar"/>
|
9
|
+
<classpathentry kind="var" path="M2_REPO/junit/junit/4.10/junit-4.10.jar" sourcepath="M2_REPO/junit/junit/4.10/junit-4.10-sources.jar">
|
10
|
+
<attributes>
|
11
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/junit/junit/4.10/junit-4.10-javadoc.jar!/" name="javadoc_location"/>
|
12
|
+
</attributes>
|
13
|
+
</classpathentry>
|
14
|
+
<classpathentry kind="var" path="M2_REPO/com/carrotsearch/randomizedtesting/randomizedtesting-runner/2.0.9/randomizedtesting-runner-2.0.9.jar" sourcepath="M2_REPO/com/carrotsearch/randomizedtesting/randomizedtesting-runner/2.0.9/randomizedtesting-runner-2.0.9-sources.jar">
|
15
|
+
<attributes>
|
16
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/com/carrotsearch/randomizedtesting/randomizedtesting-runner/2.0.9/randomizedtesting-runner-2.0.9-javadoc.jar!/" name="javadoc_location"/>
|
17
|
+
</attributes>
|
18
|
+
</classpathentry>
|
19
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/solr/solr-test-framework/4.3.1/solr-test-framework-4.3.1.jar" sourcepath="M2_REPO/org/apache/solr/solr-test-framework/4.3.1/solr-test-framework-4.3.1-sources.jar"/>
|
20
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/solr/solr-core/4.3.1/solr-core-4.3.1.jar" sourcepath="M2_REPO/org/apache/solr/solr-core/4.3.1/solr-core-4.3.1-sources.jar"/>
|
21
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/solr/solr-solrj/4.3.1/solr-solrj-4.3.1.jar" sourcepath="M2_REPO/org/apache/solr/solr-solrj/4.3.1/solr-solrj-4.3.1-sources.jar"/>
|
22
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/zookeeper/zookeeper/3.4.5/zookeeper-3.4.5.jar" sourcepath="M2_REPO/org/apache/zookeeper/zookeeper/3.4.5/zookeeper-3.4.5-sources.jar">
|
23
|
+
<attributes>
|
24
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/apache/zookeeper/zookeeper/3.4.5/zookeeper-3.4.5-javadoc.jar!/" name="javadoc_location"/>
|
25
|
+
</attributes>
|
26
|
+
</classpathentry>
|
27
|
+
<classpathentry kind="var" path="M2_REPO/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.jar" sourcepath="M2_REPO/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1-sources.jar">
|
28
|
+
<attributes>
|
29
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1-javadoc.jar!/" name="javadoc_location"/>
|
30
|
+
</attributes>
|
31
|
+
</classpathentry>
|
32
|
+
<classpathentry kind="var" path="M2_REPO/commons-io/commons-io/2.1/commons-io-2.1.jar" sourcepath="M2_REPO/commons-io/commons-io/2.1/commons-io-2.1-sources.jar">
|
33
|
+
<attributes>
|
34
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/commons-io/commons-io/2.1/commons-io-2.1-javadoc.jar!/" name="javadoc_location"/>
|
35
|
+
</attributes>
|
36
|
+
</classpathentry>
|
37
|
+
<classpathentry kind="var" path="M2_REPO/org/noggit/noggit/0.5/noggit-0.5.jar" sourcepath="M2_REPO/org/noggit/noggit/0.5/noggit-0.5-sources.jar">
|
38
|
+
<attributes>
|
39
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/noggit/noggit/0.5/noggit-0.5-javadoc.jar!/" name="javadoc_location"/>
|
40
|
+
</attributes>
|
41
|
+
</classpathentry>
|
42
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpclient/4.2.3/httpclient-4.2.3.jar" sourcepath="M2_REPO/org/apache/httpcomponents/httpclient/4.2.3/httpclient-4.2.3-sources.jar"/>
|
43
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpcore/4.2.2/httpcore-4.2.2.jar" sourcepath="M2_REPO/org/apache/httpcomponents/httpcore/4.2.2/httpcore-4.2.2-sources.jar"/>
|
44
|
+
<classpathentry kind="var" path="M2_REPO/commons-codec/commons-codec/1.7/commons-codec-1.7.jar" sourcepath="M2_REPO/commons-codec/commons-codec/1.7/commons-codec-1.7-sources.jar">
|
45
|
+
<attributes>
|
46
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/commons-codec/commons-codec/1.7/commons-codec-1.7-javadoc.jar!/" name="javadoc_location"/>
|
47
|
+
</attributes>
|
48
|
+
</classpathentry>
|
49
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/httpcomponents/httpmime/4.2.3/httpmime-4.2.3.jar" sourcepath="M2_REPO/org/apache/httpcomponents/httpmime/4.2.3/httpmime-4.2.3-sources.jar"/>
|
50
|
+
<classpathentry kind="var" path="M2_REPO/org/codehaus/woodstox/wstx-asl/3.2.7/wstx-asl-3.2.7.jar" sourcepath="M2_REPO/org/codehaus/woodstox/wstx-asl/3.2.7/wstx-asl-3.2.7-sources.jar"/>
|
51
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-analyzers-common/4.3.1/lucene-analyzers-common-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-analyzers-common/4.3.1/lucene-analyzers-common-4.3.1-sources.jar"/>
|
52
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-analyzers-kuromoji/4.3.1/lucene-analyzers-kuromoji-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-analyzers-kuromoji/4.3.1/lucene-analyzers-kuromoji-4.3.1-sources.jar"/>
|
53
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-analyzers-phonetic/4.3.1/lucene-analyzers-phonetic-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-analyzers-phonetic/4.3.1/lucene-analyzers-phonetic-4.3.1-sources.jar"/>
|
54
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-highlighter/4.3.1/lucene-highlighter-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-highlighter/4.3.1/lucene-highlighter-4.3.1-sources.jar"/>
|
55
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-memory/4.3.1/lucene-memory-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-memory/4.3.1/lucene-memory-4.3.1-sources.jar"/>
|
56
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-queries/4.3.1/lucene-queries-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-queries/4.3.1/lucene-queries-4.3.1-sources.jar"/>
|
57
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-misc/4.3.1/lucene-misc-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-misc/4.3.1/lucene-misc-4.3.1-sources.jar"/>
|
58
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-queryparser/4.3.1/lucene-queryparser-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-queryparser/4.3.1/lucene-queryparser-4.3.1-sources.jar"/>
|
59
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-spatial/4.3.1/lucene-spatial-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-spatial/4.3.1/lucene-spatial-4.3.1-sources.jar"/>
|
60
|
+
<classpathentry kind="var" path="M2_REPO/com/spatial4j/spatial4j/0.3/spatial4j-0.3.jar" sourcepath="M2_REPO/com/spatial4j/spatial4j/0.3/spatial4j-0.3-sources.jar">
|
61
|
+
<attributes>
|
62
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/com/spatial4j/spatial4j/0.3/spatial4j-0.3-javadoc.jar!/" name="javadoc_location"/>
|
63
|
+
</attributes>
|
64
|
+
</classpathentry>
|
65
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-suggest/4.3.1/lucene-suggest-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-suggest/4.3.1/lucene-suggest-4.3.1-sources.jar"/>
|
66
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-grouping/4.3.1/lucene-grouping-4.3.1.jar" sourcepath="M2_REPO/org/apache/lucene/lucene-grouping/4.3.1/lucene-grouping-4.3.1-sources.jar"/>
|
67
|
+
<classpathentry kind="var" path="M2_REPO/commons-cli/commons-cli/1.2/commons-cli-1.2.jar" sourcepath="M2_REPO/commons-cli/commons-cli/1.2/commons-cli-1.2-sources.jar">
|
68
|
+
<attributes>
|
69
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2-javadoc.jar!/" name="javadoc_location"/>
|
70
|
+
</attributes>
|
71
|
+
</classpathentry>
|
72
|
+
<classpathentry kind="var" path="M2_REPO/commons-fileupload/commons-fileupload/1.2.1/commons-fileupload-1.2.1.jar" sourcepath="M2_REPO/commons-fileupload/commons-fileupload/1.2.1/commons-fileupload-1.2.1-sources.jar">
|
73
|
+
<attributes>
|
74
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/commons-fileupload/commons-fileupload/1.2.1/commons-fileupload-1.2.1-javadoc.jar!/" name="javadoc_location"/>
|
75
|
+
</attributes>
|
76
|
+
</classpathentry>
|
77
|
+
<classpathentry kind="var" path="M2_REPO/org/restlet/jee/org.restlet/2.1.1/org.restlet-2.1.1.jar"/>
|
78
|
+
<classpathentry kind="var" path="M2_REPO/org/restlet/jee/org.restlet.ext.servlet/2.1.1/org.restlet.ext.servlet-2.1.1.jar"/>
|
79
|
+
<classpathentry kind="var" path="M2_REPO/commons-lang/commons-lang/2.6/commons-lang-2.6.jar" sourcepath="M2_REPO/commons-lang/commons-lang/2.6/commons-lang-2.6-sources.jar">
|
80
|
+
<attributes>
|
81
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6-javadoc.jar!/" name="javadoc_location"/>
|
82
|
+
</attributes>
|
83
|
+
</classpathentry>
|
84
|
+
<classpathentry kind="var" path="M2_REPO/com/google/guava/guava/13.0.1/guava-13.0.1.jar" sourcepath="M2_REPO/com/google/guava/guava/13.0.1/guava-13.0.1-sources.jar">
|
85
|
+
<attributes>
|
86
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/com/google/guava/guava/13.0.1/guava-13.0.1-javadoc.jar!/" name="javadoc_location"/>
|
87
|
+
</attributes>
|
88
|
+
</classpathentry>
|
89
|
+
<classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/jetty-servlet/8.1.8.v20121106/jetty-servlet-8.1.8.v20121106.jar" sourcepath="M2_REPO/org/eclipse/jetty/jetty-servlet/8.1.8.v20121106/jetty-servlet-8.1.8.v20121106-sources.jar">
|
90
|
+
<attributes>
|
91
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/eclipse/jetty/jetty-servlet/8.1.8.v20121106/jetty-servlet-8.1.8.v20121106-javadoc.jar!/" name="javadoc_location"/>
|
92
|
+
</attributes>
|
93
|
+
</classpathentry>
|
94
|
+
<classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/jetty-security/8.1.8.v20121106/jetty-security-8.1.8.v20121106.jar" sourcepath="M2_REPO/org/eclipse/jetty/jetty-security/8.1.8.v20121106/jetty-security-8.1.8.v20121106-sources.jar">
|
95
|
+
<attributes>
|
96
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/eclipse/jetty/jetty-security/8.1.8.v20121106/jetty-security-8.1.8.v20121106-javadoc.jar!/" name="javadoc_location"/>
|
97
|
+
</attributes>
|
98
|
+
</classpathentry>
|
99
|
+
<classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/jetty-server/8.1.8.v20121106/jetty-server-8.1.8.v20121106.jar" sourcepath="M2_REPO/org/eclipse/jetty/jetty-server/8.1.8.v20121106/jetty-server-8.1.8.v20121106-sources.jar">
|
100
|
+
<attributes>
|
101
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/eclipse/jetty/jetty-server/8.1.8.v20121106/jetty-server-8.1.8.v20121106-javadoc.jar!/" name="javadoc_location"/>
|
102
|
+
</attributes>
|
103
|
+
</classpathentry>
|
104
|
+
<classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/orbit/javax.servlet/3.0.0.v201112011016/javax.servlet-3.0.0.v201112011016.jar" sourcepath="M2_REPO/org/eclipse/jetty/orbit/javax.servlet/3.0.0.v201112011016/javax.servlet-3.0.0.v201112011016-sources.jar">
|
105
|
+
<attributes>
|
106
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/eclipse/jetty/orbit/javax.servlet/3.0.0.v201112011016/javax.servlet-3.0.0.v201112011016-javadoc.jar!/" name="javadoc_location"/>
|
107
|
+
</attributes>
|
108
|
+
</classpathentry>
|
109
|
+
<classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/jetty-continuation/8.1.8.v20121106/jetty-continuation-8.1.8.v20121106.jar" sourcepath="M2_REPO/org/eclipse/jetty/jetty-continuation/8.1.8.v20121106/jetty-continuation-8.1.8.v20121106-sources.jar">
|
110
|
+
<attributes>
|
111
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/eclipse/jetty/jetty-continuation/8.1.8.v20121106/jetty-continuation-8.1.8.v20121106-javadoc.jar!/" name="javadoc_location"/>
|
112
|
+
</attributes>
|
113
|
+
</classpathentry>
|
114
|
+
<classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/jetty-http/8.1.8.v20121106/jetty-http-8.1.8.v20121106.jar" sourcepath="M2_REPO/org/eclipse/jetty/jetty-http/8.1.8.v20121106/jetty-http-8.1.8.v20121106-sources.jar">
|
115
|
+
<attributes>
|
116
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/eclipse/jetty/jetty-http/8.1.8.v20121106/jetty-http-8.1.8.v20121106-javadoc.jar!/" name="javadoc_location"/>
|
117
|
+
</attributes>
|
118
|
+
</classpathentry>
|
119
|
+
<classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/jetty-io/8.1.8.v20121106/jetty-io-8.1.8.v20121106.jar" sourcepath="M2_REPO/org/eclipse/jetty/jetty-io/8.1.8.v20121106/jetty-io-8.1.8.v20121106-sources.jar">
|
120
|
+
<attributes>
|
121
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/eclipse/jetty/jetty-io/8.1.8.v20121106/jetty-io-8.1.8.v20121106-javadoc.jar!/" name="javadoc_location"/>
|
122
|
+
</attributes>
|
123
|
+
</classpathentry>
|
124
|
+
<classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/jetty-util/8.1.8.v20121106/jetty-util-8.1.8.v20121106.jar" sourcepath="M2_REPO/org/eclipse/jetty/jetty-util/8.1.8.v20121106/jetty-util-8.1.8.v20121106-sources.jar">
|
125
|
+
<attributes>
|
126
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/eclipse/jetty/jetty-util/8.1.8.v20121106/jetty-util-8.1.8.v20121106-javadoc.jar!/" name="javadoc_location"/>
|
127
|
+
</attributes>
|
128
|
+
</classpathentry>
|
129
|
+
<classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/jetty-webapp/8.1.8.v20121106/jetty-webapp-8.1.8.v20121106.jar" sourcepath="M2_REPO/org/eclipse/jetty/jetty-webapp/8.1.8.v20121106/jetty-webapp-8.1.8.v20121106-sources.jar">
|
130
|
+
<attributes>
|
131
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/eclipse/jetty/jetty-webapp/8.1.8.v20121106/jetty-webapp-8.1.8.v20121106-javadoc.jar!/" name="javadoc_location"/>
|
132
|
+
</attributes>
|
133
|
+
</classpathentry>
|
134
|
+
<classpathentry kind="var" path="M2_REPO/org/eclipse/jetty/jetty-xml/8.1.8.v20121106/jetty-xml-8.1.8.v20121106.jar" sourcepath="M2_REPO/org/eclipse/jetty/jetty-xml/8.1.8.v20121106/jetty-xml-8.1.8.v20121106-sources.jar">
|
135
|
+
<attributes>
|
136
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/eclipse/jetty/jetty-xml/8.1.8.v20121106/jetty-xml-8.1.8.v20121106-javadoc.jar!/" name="javadoc_location"/>
|
137
|
+
</attributes>
|
138
|
+
</classpathentry>
|
139
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/lucene/lucene-facet/4.3.1/lucene-facet-4.3.1.jar"/>
|
140
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/solr/solr-langid/4.3.1/solr-langid-4.3.1.jar"/>
|
141
|
+
<classpathentry kind="var" path="M2_REPO/net/arnx/jsonic/1.2.7/jsonic-1.2.7.jar" sourcepath="M2_REPO/net/arnx/jsonic/1.2.7/jsonic-1.2.7-sources.jar">
|
142
|
+
<attributes>
|
143
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/net/arnx/jsonic/1.2.7/jsonic-1.2.7-javadoc.jar!/" name="javadoc_location"/>
|
144
|
+
</attributes>
|
145
|
+
</classpathentry>
|
146
|
+
<classpathentry kind="var" path="M2_REPO/com/cybozu/labs/langdetect/1.1-20120112/langdetect-1.1-20120112.jar" sourcepath="M2_REPO/com/cybozu/labs/langdetect/1.1-20120112/langdetect-1.1-20120112-sources.jar">
|
147
|
+
<attributes>
|
148
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/com/cybozu/labs/langdetect/1.1-20120112/langdetect-1.1-20120112-javadoc.jar!/" name="javadoc_location"/>
|
149
|
+
</attributes>
|
150
|
+
</classpathentry>
|
151
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/tika/tika-parsers/1.3/tika-parsers-1.3.jar" sourcepath="M2_REPO/org/apache/tika/tika-parsers/1.3/tika-parsers-1.3-sources.jar">
|
152
|
+
<attributes>
|
153
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/apache/tika/tika-parsers/1.3/tika-parsers-1.3-javadoc.jar!/" name="javadoc_location"/>
|
154
|
+
</attributes>
|
155
|
+
</classpathentry>
|
156
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/tika/tika-core/1.3/tika-core-1.3.jar" sourcepath="M2_REPO/org/apache/tika/tika-core/1.3/tika-core-1.3-sources.jar">
|
157
|
+
<attributes>
|
158
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/apache/tika/tika-core/1.3/tika-core-1.3-javadoc.jar!/" name="javadoc_location"/>
|
159
|
+
</attributes>
|
160
|
+
</classpathentry>
|
161
|
+
<classpathentry kind="var" path="M2_REPO/org/gagravarr/vorbis-java-tika/0.1/vorbis-java-tika-0.1.jar" sourcepath="M2_REPO/org/gagravarr/vorbis-java-tika/0.1/vorbis-java-tika-0.1-sources.jar">
|
162
|
+
<attributes>
|
163
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/gagravarr/vorbis-java-tika/0.1/vorbis-java-tika-0.1-javadoc.jar!/" name="javadoc_location"/>
|
164
|
+
</attributes>
|
165
|
+
</classpathentry>
|
166
|
+
<classpathentry kind="var" path="M2_REPO/edu/ucar/netcdf/4.2-min/netcdf-4.2-min.jar" sourcepath="M2_REPO/edu/ucar/netcdf/4.2-min/netcdf-4.2-min-sources.jar">
|
167
|
+
<attributes>
|
168
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/edu/ucar/netcdf/4.2-min/netcdf-4.2-min-javadoc.jar!/" name="javadoc_location"/>
|
169
|
+
</attributes>
|
170
|
+
</classpathentry>
|
171
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/james/apache-mime4j-core/0.7.2/apache-mime4j-core-0.7.2.jar" sourcepath="M2_REPO/org/apache/james/apache-mime4j-core/0.7.2/apache-mime4j-core-0.7.2-sources.jar">
|
172
|
+
<attributes>
|
173
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/apache/james/apache-mime4j-core/0.7.2/apache-mime4j-core-0.7.2-javadoc.jar!/" name="javadoc_location"/>
|
174
|
+
</attributes>
|
175
|
+
</classpathentry>
|
176
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/james/apache-mime4j-dom/0.7.2/apache-mime4j-dom-0.7.2.jar" sourcepath="M2_REPO/org/apache/james/apache-mime4j-dom/0.7.2/apache-mime4j-dom-0.7.2-sources.jar">
|
177
|
+
<attributes>
|
178
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/apache/james/apache-mime4j-dom/0.7.2/apache-mime4j-dom-0.7.2-javadoc.jar!/" name="javadoc_location"/>
|
179
|
+
</attributes>
|
180
|
+
</classpathentry>
|
181
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.jar" sourcepath="M2_REPO/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1-sources.jar">
|
182
|
+
<attributes>
|
183
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1-javadoc.jar!/" name="javadoc_location"/>
|
184
|
+
</attributes>
|
185
|
+
</classpathentry>
|
186
|
+
<classpathentry kind="var" path="M2_REPO/org/tukaani/xz/1.0/xz-1.0.jar" sourcepath="M2_REPO/org/tukaani/xz/1.0/xz-1.0-sources.jar">
|
187
|
+
<attributes>
|
188
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/tukaani/xz/1.0/xz-1.0-javadoc.jar!/" name="javadoc_location"/>
|
189
|
+
</attributes>
|
190
|
+
</classpathentry>
|
191
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/pdfbox/pdfbox/1.7.1/pdfbox-1.7.1.jar" sourcepath="M2_REPO/org/apache/pdfbox/pdfbox/1.7.1/pdfbox-1.7.1-sources.jar">
|
192
|
+
<attributes>
|
193
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/apache/pdfbox/pdfbox/1.7.1/pdfbox-1.7.1-javadoc.jar!/" name="javadoc_location"/>
|
194
|
+
</attributes>
|
195
|
+
</classpathentry>
|
196
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/pdfbox/fontbox/1.7.1/fontbox-1.7.1.jar" sourcepath="M2_REPO/org/apache/pdfbox/fontbox/1.7.1/fontbox-1.7.1-sources.jar">
|
197
|
+
<attributes>
|
198
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/apache/pdfbox/fontbox/1.7.1/fontbox-1.7.1-javadoc.jar!/" name="javadoc_location"/>
|
199
|
+
</attributes>
|
200
|
+
</classpathentry>
|
201
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/pdfbox/jempbox/1.7.1/jempbox-1.7.1.jar" sourcepath="M2_REPO/org/apache/pdfbox/jempbox/1.7.1/jempbox-1.7.1-sources.jar">
|
202
|
+
<attributes>
|
203
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/apache/pdfbox/jempbox/1.7.1/jempbox-1.7.1-javadoc.jar!/" name="javadoc_location"/>
|
204
|
+
</attributes>
|
205
|
+
</classpathentry>
|
206
|
+
<classpathentry kind="var" path="M2_REPO/org/bouncycastle/bcmail-jdk15/1.45/bcmail-jdk15-1.45.jar" sourcepath="M2_REPO/org/bouncycastle/bcmail-jdk15/1.45/bcmail-jdk15-1.45-sources.jar">
|
207
|
+
<attributes>
|
208
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/bouncycastle/bcmail-jdk15/1.45/bcmail-jdk15-1.45-javadoc.jar!/" name="javadoc_location"/>
|
209
|
+
</attributes>
|
210
|
+
</classpathentry>
|
211
|
+
<classpathentry kind="var" path="M2_REPO/org/bouncycastle/bcprov-jdk15/1.45/bcprov-jdk15-1.45.jar" sourcepath="M2_REPO/org/bouncycastle/bcprov-jdk15/1.45/bcprov-jdk15-1.45-sources.jar">
|
212
|
+
<attributes>
|
213
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/bouncycastle/bcprov-jdk15/1.45/bcprov-jdk15-1.45-javadoc.jar!/" name="javadoc_location"/>
|
214
|
+
</attributes>
|
215
|
+
</classpathentry>
|
216
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/poi/poi/3.8/poi-3.8.jar" sourcepath="M2_REPO/org/apache/poi/poi/3.8/poi-3.8-sources.jar"/>
|
217
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/poi/poi-scratchpad/3.8/poi-scratchpad-3.8.jar" sourcepath="M2_REPO/org/apache/poi/poi-scratchpad/3.8/poi-scratchpad-3.8-sources.jar"/>
|
218
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/poi/poi-ooxml/3.8/poi-ooxml-3.8.jar" sourcepath="M2_REPO/org/apache/poi/poi-ooxml/3.8/poi-ooxml-3.8-sources.jar"/>
|
219
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/poi/poi-ooxml-schemas/3.8/poi-ooxml-schemas-3.8.jar"/>
|
220
|
+
<classpathentry kind="var" path="M2_REPO/org/apache/xmlbeans/xmlbeans/2.3.0/xmlbeans-2.3.0.jar"/>
|
221
|
+
<classpathentry kind="var" path="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar" sourcepath="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1-sources.jar"/>
|
222
|
+
<classpathentry kind="var" path="M2_REPO/org/ccil/cowan/tagsoup/tagsoup/1.2.1/tagsoup-1.2.1.jar" sourcepath="M2_REPO/org/ccil/cowan/tagsoup/tagsoup/1.2.1/tagsoup-1.2.1-sources.jar">
|
223
|
+
<attributes>
|
224
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/org/ccil/cowan/tagsoup/tagsoup/1.2.1/tagsoup-1.2.1-javadoc.jar!/" name="javadoc_location"/>
|
225
|
+
</attributes>
|
226
|
+
</classpathentry>
|
227
|
+
<classpathentry kind="var" path="M2_REPO/com/googlecode/mp4parser/isoparser/1.0-RC-1/isoparser-1.0-RC-1.jar" sourcepath="M2_REPO/com/googlecode/mp4parser/isoparser/1.0-RC-1/isoparser-1.0-RC-1-sources.jar">
|
228
|
+
<attributes>
|
229
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/com/googlecode/mp4parser/isoparser/1.0-RC-1/isoparser-1.0-RC-1-javadoc.jar!/" name="javadoc_location"/>
|
230
|
+
</attributes>
|
231
|
+
</classpathentry>
|
232
|
+
<classpathentry kind="var" path="M2_REPO/com/drewnoakes/metadata-extractor/2.6.2/metadata-extractor-2.6.2.jar" sourcepath="M2_REPO/com/drewnoakes/metadata-extractor/2.6.2/metadata-extractor-2.6.2-sources.jar">
|
233
|
+
<attributes>
|
234
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/com/drewnoakes/metadata-extractor/2.6.2/metadata-extractor-2.6.2-javadoc.jar!/" name="javadoc_location"/>
|
235
|
+
</attributes>
|
236
|
+
</classpathentry>
|
237
|
+
<classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar" sourcepath="M2_REPO/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1-sources.jar"/>
|
238
|
+
<classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.jar"/>
|
239
|
+
<classpathentry kind="var" path="M2_REPO/de/l3s/boilerpipe/boilerpipe/1.1.0/boilerpipe-1.1.0.jar" sourcepath="M2_REPO/de/l3s/boilerpipe/boilerpipe/1.1.0/boilerpipe-1.1.0-sources.jar">
|
240
|
+
<attributes>
|
241
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/de/l3s/boilerpipe/boilerpipe/1.1.0/boilerpipe-1.1.0-javadoc.jar!/" name="javadoc_location"/>
|
242
|
+
</attributes>
|
243
|
+
</classpathentry>
|
244
|
+
<classpathentry kind="var" path="M2_REPO/rome/rome/0.9/rome-0.9.jar" sourcepath="M2_REPO/rome/rome/0.9/rome-0.9-sources.jar">
|
245
|
+
<attributes>
|
246
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/rome/rome/0.9/rome-0.9-javadoc.jar!/" name="javadoc_location"/>
|
247
|
+
</attributes>
|
248
|
+
</classpathentry>
|
249
|
+
<classpathentry kind="var" path="M2_REPO/jdom/jdom/1.0/jdom-1.0.jar" sourcepath="M2_REPO/jdom/jdom/1.0/jdom-1.0-sources.jar"/>
|
250
|
+
<classpathentry kind="var" path="M2_REPO/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3.jar" sourcepath="M2_REPO/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3-sources.jar">
|
251
|
+
<attributes>
|
252
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3-javadoc.jar!/" name="javadoc_location"/>
|
253
|
+
</attributes>
|
254
|
+
</classpathentry>
|
255
|
+
<classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16.jar" sourcepath="M2_REPO/log4j/log4j/1.2.16/log4j-1.2.16-sources.jar">
|
256
|
+
<attributes>
|
257
|
+
<attribute value="jar:file:/Users/brendan/.m2/repository/log4j/log4j/1.2.16/log4j-1.2.16-javadoc.jar!/" name="javadoc_location"/>
|
258
|
+
</attributes>
|
259
|
+
</classpathentry>
|
260
|
+
</classpath>
|
data/.gitignore
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
target/*
|
19
|
+
|
20
|
+
# IntelliJ project files
|
21
|
+
*.iml
|
22
|
+
*.ipr
|
23
|
+
*.iws
|
24
|
+
|
25
|
+
reports
|
26
|
+
|
27
|
+
# Created when solr unpacks the war
|
28
|
+
server/solr-webapp
|
data/.project
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<projectDescription>
|
3
|
+
<name>solr-winds</name>
|
4
|
+
<comment>NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse.</comment>
|
5
|
+
<projects/>
|
6
|
+
<buildSpec>
|
7
|
+
<buildCommand>
|
8
|
+
<name>org.eclipse.jdt.core.javabuilder</name>
|
9
|
+
</buildCommand>
|
10
|
+
</buildSpec>
|
11
|
+
<natures>
|
12
|
+
<nature>org.eclipse.jdt.core.javanature</nature>
|
13
|
+
</natures>
|
14
|
+
</projectDescription>
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
jruby-1.7.3
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 rainkinz
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# Rere
|
2
|
+
|
3
|
+
Bundles solr in a gem
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'rere'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install rere
|
18
|
+
|
19
|
+
|
20
|
+
## Configuration
|
21
|
+
|
22
|
+
Set up a configuration for that tells solr where to look for solr-home.
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
## Usage
|
27
|
+
|
28
|
+
### Check status of an instance
|
29
|
+
|
30
|
+
solr status [-e environment]
|
31
|
+
|
32
|
+
|
33
|
+
## Development
|
34
|
+
|
35
|
+
### Setup your development environment
|
36
|
+
|
37
|
+
* Install Java
|
38
|
+
It is probably already installed or you can use your favorite package manager
|
39
|
+
to install it for you. If you need instructions for installing it manually
|
40
|
+
see: http://wiki.werert.com/display/tech/Java+Setup
|
41
|
+
|
42
|
+
* Install maven
|
43
|
+
Use brew or similar package manager or instructions at: http://maven.apache.org/
|
44
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
|
3
|
+
#
|
4
|
+
# Currently we just shell out to maven for building and
|
5
|
+
# testing any java code. This might change in the future.
|
6
|
+
#
|
7
|
+
namespace :java do
|
8
|
+
|
9
|
+
# desc "Installs maven if you don't already have it"
|
10
|
+
# task :install_maven do
|
11
|
+
# raise "TODO"
|
12
|
+
# end
|
13
|
+
|
14
|
+
desc "Compiles code in src"
|
15
|
+
task :compile do
|
16
|
+
`mvn compile`
|
17
|
+
end
|
18
|
+
|
19
|
+
desc "Runs java based tests"
|
20
|
+
task :test do
|
21
|
+
`mvn test`
|
22
|
+
end
|
23
|
+
|
24
|
+
task :update_jars do
|
25
|
+
# `mvn dependency:copy`
|
26
|
+
end
|
27
|
+
|
28
|
+
task :package do
|
29
|
+
`mvn package`
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
|
35
|
+
task :assemble_solr do
|
36
|
+
Rake::Task['java:package'].execute
|
37
|
+
Rake::Task['java:update_jars'].execute
|
38
|
+
end
|
39
|
+
|
40
|
+
task :build => :assemble_solr
|
41
|
+
|
42
|
+
|
43
|
+
task :version_bump do |t|
|
44
|
+
|
45
|
+
if `git status` !~ /nothing to commit/
|
46
|
+
abort("You have uncommitted changes")
|
47
|
+
end
|
48
|
+
|
49
|
+
increment = ENV['INCREMENT'] || 'patch'
|
50
|
+
index = ['major', 'minor','patch'].index(increment)
|
51
|
+
file = 'lib/rere/version.rb'
|
52
|
+
|
53
|
+
version_file = File.read(file)
|
54
|
+
puts version_file
|
55
|
+
old_version, *version_parts = version_file.match(/(\d+)\.(\d+)\.(\d+)/).to_a
|
56
|
+
|
57
|
+
version_parts[index] = version_parts[index].to_i + 1
|
58
|
+
version_parts[2] = 0 if index < 2
|
59
|
+
version_parts[1] = 0 if index < 1
|
60
|
+
new_version = version_parts * '.'
|
61
|
+
puts "Bumping to version #{new_version}"
|
62
|
+
File.open(file,'w'){|f| f.write(version_file.sub(old_version, new_version)) }
|
63
|
+
|
64
|
+
system "git add #{file} && git commit -m 'bump version to #{new_version}'"
|
65
|
+
end
|