-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
44 lines (31 loc) · 1008 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
44 lines (31 loc) · 1008 Bytes
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
41
42
43
44
pluginManagement {
val kotlinVersion: String by settings
repositories {
mavenCentral()
gradlePluginPortal()
}
plugins {
kotlin("jvm") version kotlinVersion
kotlin("plugin.allopen") version kotlinVersion
kotlin("plugin.noarg") version kotlinVersion
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
include(":TextExtractorCommon")
include(":PopplerPdfTextExtractor")
include(":iText2PdfTextExtractor")
include(":iTextPdfTextExtractor")
include(":PdfBoxPdfTextExtractor")
include(":PdfBox2PdfTextExtractor")
include(":PdfBoxAndroidPdfTextExtractor")
include(":OpenPdfPdfTextExtractor")
include(":TesseractCommon")
include(":Tesseract4CommandlineImageTextExtractor")
include(":Tesseract4JniImageTextExtractor")
include(":FineReaderHotFolderImageTextExtractor")
include(":FineReaderCommandlineImageTextExtractor")
include(":TikaTextExtractor")
include(":TestAppAndroid")
include (":TestAppJavaFX")