summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2008-08-20 19:36:12 +0200
committerAndreas Baumann <abaumann@yahoo.com>2008-08-20 19:36:12 +0200
commit7c39fef9abbfb9443c9d4922824a46ded119c00b (patch)
tree2caa4d420bf4f25ad336a6e5f87621784b5a4f8f
parentc54543c3e8ed6fe2b332e398de6ce9f3c63d29d1 (diff)
downloadLuceneAnalyzer-7c39fef9abbfb9443c9d4922824a46ded119c00b.tar.gz
LuceneAnalyzer-7c39fef9abbfb9443c9d4922824a46ded119c00b.tar.bz2
fixed license, distribution and web page, adjusted to version 0.0.1
-rw-r--r--LICENSE.txt2
-rwxr-xr-xcreate_dist.sh2
-rw-r--r--dist/index.html8
-rw-r--r--src/main/java/org/dyndns/andreasbaumann/LuceneAnalyzer.java2
4 files changed, 8 insertions, 6 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
index d645695..5a4b8c3 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.
- Copyright [yyyy] [name of copyright owner]
+ Copyright 2008 Andreas Baumann (abaumann at yahoo dot com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/create_dist.sh b/create_dist.sh
index 408d05e..065fab2 100755
--- a/create_dist.sh
+++ b/create_dist.sh
@@ -4,6 +4,8 @@ mkdir luceneanalyzer-0.0.1
mkdir luceneanalyzer-0.0.1/lib
cp target/luceneanalyzer-0.0.1.jar luceneanalyzer-0.0.1/lib/.
cp target/lib/* luceneanalyzer-0.0.1/lib/.
+cp run.sh luceneanalyzer-0.0.1/.
+cp LICENSE.txt luceneanalyzer-0.0.1/.
tar zcvf luceneanalyzer-0.0.1.tgz luceneanalyzer-0.0.1
rm -rf luceneanalyzer-0.0.1
diff --git a/dist/index.html b/dist/index.html
index c0dfd31..683407d 100644
--- a/dist/index.html
+++ b/dist/index.html
@@ -5,13 +5,13 @@
<body>
-<p>LuceneAnalyzer is a small shell tool (in Java) which
- allows dump and inspecting a Lucene index. Something for
- the 'sort-uniq-cut-awk' guys out there. :-)
+<p>
+LuceneAnalyzer is a quick hack for dumping and inspecting a Lucene index.
+Something for the 'sort-uniq-cut-awk' guys out there. :-)
</p>
<p>
- <a href="luceneanalyzer-0.0.1.tgz">binaries version 0.0.1</a>
+ <a href="luceneanalyzer-0.0.1.tgz">binaries version 0.0.1</a><br/>
<a href="luceneanalyzer-0.0.1-src.tgz">Sources version 0.0.1</a>
</p>
diff --git a/src/main/java/org/dyndns/andreasbaumann/LuceneAnalyzer.java b/src/main/java/org/dyndns/andreasbaumann/LuceneAnalyzer.java
index aab2862..af0562b 100644
--- a/src/main/java/org/dyndns/andreasbaumann/LuceneAnalyzer.java
+++ b/src/main/java/org/dyndns/andreasbaumann/LuceneAnalyzer.java
@@ -55,7 +55,7 @@ import org.apache.lucene.document.Field;
public class LuceneAnalyzer
{
- private static final String versionString = "0.0.2";
+ private static final String versionString = "0.0.1";
private static void printGlobalInfo( IndexReader indexReader ) throws IOException
{