-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
java -XX:MaxPermSize=512m -jar .\target\luke-with-deps.jar | ||
java -jar .\target\luke-with-deps.jar | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
DmitryKey
Owner
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
if [[ -d `echo $LUKE_PATH` ]]; then | ||
java -XX:MaxPermSize=512m -jar $LUKE_PATH/target/luke-with-deps.jar | ||
java -jar $LUKE_PATH/target/luke-with-deps.jar | ||
else | ||
echo "Unable to find the LUKE_PATH environnement variable..." | ||
echo "Assuming you're running from the root folder of luke..." | ||
java -XX:MaxPermSize=512m -jar target/luke-with-deps.jar | ||
java -jar target/luke-with-deps.jar | ||
fi | ||
# | ||
# In order to start luke with your custom analyzer class extending org.apache.lucene.analysis.Analyzer run: | ||
# java -XX:MaxPermSize=512m -cp target/luke-with-deps.jar:/path/to/custom_analyzer.jar org.getopt.luke.Luke | ||
# java -cp target/luke-with-deps.jar:/path/to/custom_analyzer.jar org.getopt.luke.Luke | ||
# your analyzer should appear in the drop-down menu with analyzers on the Search tab | ||
#java -XX:MaxPermSize=512m -cp target/luke-with-deps.jar:/home/dmitry/projects/github/suggestinganalyzer/target/suggestinganalyzer-1.0-SNAPSHOT.jar org.getopt.luke.Luke | ||
#java -cp target/luke-with-deps.jar:/home/dmitry/projects/github/suggestinganalyzer/target/suggestinganalyzer-1.0-SNAPSHOT.jar org.getopt.luke.Luke |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dialog modal="true" name="about" columns="1" gap="8" icon="/img/luke.gif" text=" About" left="4" right="4" bottom="4" top="4" close="remove(about)"> | ||
<label halign="center" valign="center" text="v 5.2.0 (2015-07-07)" font="10" icon="/img/luke-big.gif"/> | ||
<label halign="center" valign="center" text="v 5.3.0 (2015-09-28)" font="10" icon="/img/luke-big.gif"/> | ||
<button type="link" tooltip="Go to Luke home page" action="goUrl(this)" halign="center" property="url=https://github.com/DmitryKey/luke" foreground="#5aaa88" text="Lucene Index Toolbox" font="18 bold"/> | ||
<label halign="center" font="13" text="Created by Andrzej Bialecki <[email protected]>"/> | ||
<label halign="center" font="13" text="Maintained and further developed by Dmitry Kan <[email protected]>"/> | ||
<label halign="center" font="13" text="Further developed by: Dmitry Kan <[email protected]>, Tomoko Uchida <https://twitter.com/moco_beta>"/> | ||
<label halign="center" font="13" text="Baked by pull-requests from our fantastic community. Thanks to all of you!"/> | ||
<label halign="center" font="italic 11" text="GUI client of the best Java search library"/> | ||
<button type="link" icon="/img/lucene.gif" tooltip="Go to Lucene home page" action="goUrl(this)" halign="center" property="url=http://lucene.apache.org/" foreground="#5aaa88" text="Apache Lucene - home page"/> | ||
<label halign="center" font="11" name="lver" text=""/> | ||
|
It would be nice to have
start
in front andjavaw
instead ofjava
so it won't hold the console.