-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (32 loc) · 927 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group = 'io.shubham0204.fulltextsearch'
version = '1.0'
project.setProperty( "mainClassName" , "io.shubham0204.fulltextsearch.cli.FullTextSearchCommand" )
repositories {
mavenCentral()
}
dependencies {
// Apache PDFBook
implementation 'org.apache.pdfbox:pdfbox:2.0.0'
// Apache POI for Microsoft documents
implementation 'org.apache.poi:poi:5.2.5'
implementation 'org.apache.poi:poi-ooxml:5.2.5'
// picocli for command-line utility
implementation 'info.picocli:picocli:4.7.5'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}
shadowJar {
manifest {
attributes(
'mainClassName': 'io.shubham0204.fulltextsearch.cli.FullTextSearchCommand'
)
}
}