Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
fixed typos in the README.md
Browse files Browse the repository at this point in the history
specified the maven plugin versions
fixed compile errors

This project now compiles and runs.
  • Loading branch information
DmitryKey committed Jul 7, 2013
1 parent 661c35c commit ad9d250
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ This fork's goal is:
0. Keep the project mavenized (compatible with Apache Lucene and Solr style)
1. To port the thinlet UI to an ASL compliant license framework so that it can be contributed back to Apache Lucene.
Current work is done with GWT 2.5.1.
2. To revive the project and establish a single point trust for the development and updates of the tool. This said,
2. To revive the project and establish a single point of trust for the development and updates of the tool. This said,
everyone is welcome to join.


There are other more technical goals, that will get updated here as get into shape.
There are other more technical goals, that will get updated here as they get into the shape.
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.0.4</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -142,6 +143,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<mainClass/>
</configuration>
Expand Down Expand Up @@ -178,6 +180,7 @@
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/org/getopt/luke/HighFreqTerms.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import org.apache.lucene.index.*;
import org.apache.lucene.store.FSDirectory;
import org.apache.lucene.util.Bits;
import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.PriorityQueue;
import org.slf4j.Logger;
Expand Down Expand Up @@ -105,7 +106,7 @@ private static void usage() {
*
* @param reader
* @param numTerms
* @param field
* @param fieldNames
* @return TermStats[] ordered by terms with highest docFreq first.
* @throws Exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@ public class KeepLastIndexDeletionPolicy extends IndexDeletionPolicy {
public void onInit(List commits) {
//System.out.println("onInit -> onCommit");
// Note that commits.size() should normally be 1:
try {
onCommit(commits);
}
catch (java.io.IOException e) {
e.printStackTrace();
}
}

/**
Expand Down

0 comments on commit ad9d250

Please sign in to comment.