1
0
Fork 0
pdf-parsers/build.gradle

26 lines
585 B
Groovy
Raw Normal View History

2021-07-05 07:10:52 +00:00
plugins {
id "com.google.cloud.tools.jib" version "3.1.1" apply false
}
2021-07-05 07:32:53 +00:00
allprojects {
version = findProperty('BUILD_VERSION') ?: 'latest'
group = "com.devsoap"
}
2021-04-19 10:14:35 +00:00
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
}
}