1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-06-28 21:54:31 +02:00
Stirling-PDF/build.gradle

50 lines
1.1 KiB
Groovy
Raw Normal View History

2023-01-27 19:23:40 +01:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.5'
2023-01-27 19:23:40 +01:00
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'stirling.software'
2023-04-03 00:59:22 +02:00
version = '0.4.7'
2023-01-27 19:23:40 +01:00
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
// https://mvnrepository.com/artifact/org.apache.pdfbox/jbig2-imageio
implementation group: 'org.apache.pdfbox', name: 'jbig2-imageio', version: '3.0.4'
//general PDF
implementation 'org.apache.pdfbox:pdfbox:2.0.27'
implementation 'com.itextpdf:itextpdf:5.5.13.3'
developmentOnly("org.springframework.boot:spring-boot-devtools")
2023-01-27 19:23:40 +01:00
}
jar {
enabled = false
manifest {
attributes 'Implementation-Title': 'Stirling-PDF',
'Implementation-Version': project.version
}
}
2023-01-27 19:23:40 +01:00
tasks.named('test') {
useJUnitPlatform()
}
2023-01-27 19:23:40 +01:00
task printVersion {
println project.version
}