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