File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
src/main/java/tester/lucene Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ apply plugin : ' java'
2+ apply plugin : ' eclipse'
3+
4+ sourceCompatibility = 1.8
5+ version = ' 1.0'
6+ jar {
7+ manifest {
8+ attributes ' Implementation-Title' : ' Gradle Quickstart' , ' Implementation-Version' : version
9+ }
10+ }
11+
12+ repositories {
13+ mavenCentral()
14+ }
15+
16+ dependencies {
17+ compile ' org.apache.lucene:lucene-core:5.1.0'
18+ compile ' org.apache.lucene:lucene-analyzers-common:5.1.0'
19+ compile ' org.apache.lucene:lucene-queryparser:5.1.0'
20+
21+ compile group : ' commons-collections' , name : ' commons-collections' , version : ' 3.2'
22+ testCompile group : ' junit' , name : ' junit' , version : ' 4.+'
23+ }
24+
25+
26+
Original file line number Diff line number Diff line change 1+ package tester .lucene ;
2+
3+ public class IndexFiles {
4+
5+ }
You can’t perform that action at this time.
0 commit comments