Skip to content

Commit d04676d

Browse files
initial commit
0 parents  commit d04676d

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

build.gradle

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package tester.lucene;
2+
3+
public class IndexFiles {
4+
5+
}

0 commit comments

Comments
 (0)