1
0
Fork 0
pdf-parsers/build.gradle

19 lines
451 B
Groovy
Raw Normal View History

2021-04-19 10:14:35 +00:00
group 'com.devsoap.parsers'
version '1.0'
subprojects {
apply plugin: 'java'
apply plugin: 'application'
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
repositories {
mavenCentral()
}
dependencies {
implementation 'com.itextpdf:itext7-core:7.1.15'
2021-04-25 06:02:55 +00:00
implementation 'org.slf4j:slf4j-api:1.7.5'
implementation 'org.slf4j:slf4j-log4j12:1.7.5'
2021-04-19 10:14:35 +00:00
}
}