2023-01-27 18:23:40 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-03-28 00:16:27 +01:00
|
|
|
id 'org.springframework.boot' version '3.0.5'
|
2023-01-27 18:23:40 +00:00
|
|
|
id 'io.spring.dependency-management' version '1.1.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'stirling.software'
|
2023-04-16 23:41:56 +01:00
|
|
|
version = '0.5.1'
|
2023-01-27 18:23:40 +00:00
|
|
|
sourceCompatibility = '17'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-04-16 22:03:30 +01:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web:3.0.5'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.0.5'
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.0.5'
|
2023-04-01 21:02:54 +01:00
|
|
|
// https://mvnrepository.com/artifact/org.apache.pdfbox/jbig2-imageio
|
|
|
|
implementation group: 'org.apache.pdfbox', name: 'jbig2-imageio', version: '3.0.4'
|
2023-04-03 23:16:11 +01:00
|
|
|
implementation 'commons-io:commons-io:2.11.0'
|
2023-04-01 21:02:54 +01:00
|
|
|
|
2023-03-20 21:55:11 +00:00
|
|
|
//general PDF
|
2023-04-17 23:02:33 +00:00
|
|
|
implementation 'org.apache.pdfbox:pdfbox:2.0.28'
|
2023-03-25 22:16:26 +00:00
|
|
|
|
2023-02-27 23:14:35 +00:00
|
|
|
implementation 'com.itextpdf:itextpdf:5.5.13.3'
|
2023-03-25 22:16:26 +00:00
|
|
|
developmentOnly("org.springframework.boot:spring-boot-devtools")
|
2023-03-20 21:55:11 +00:00
|
|
|
|
2023-01-27 18:23:40 +00:00
|
|
|
}
|
|
|
|
|
2023-01-29 14:10:12 +00:00
|
|
|
jar {
|
|
|
|
enabled = false
|
2023-03-20 21:55:11 +00:00
|
|
|
manifest {
|
|
|
|
attributes 'Implementation-Title': 'Stirling-PDF',
|
|
|
|
'Implementation-Version': project.version
|
|
|
|
}
|
|
|
|
|
2023-01-29 14:10:12 +00:00
|
|
|
}
|
|
|
|
|
2023-01-27 18:23:40 +00:00
|
|
|
tasks.named('test') {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
2023-01-29 17:06:53 +00:00
|
|
|
|
2023-01-27 18:23:40 +00:00
|
|
|
task printVersion {
|
|
|
|
println project.version
|
|
|
|
}
|