2023-01-27 19:23:40 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-02-28 00:14:05 +01:00
|
|
|
id 'org.springframework.boot' version '3.0.3'
|
2023-01-27 19:23:40 +01:00
|
|
|
id 'io.spring.dependency-management' version '1.1.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'stirling.software'
|
2023-03-22 20:24:43 +01:00
|
|
|
version = '0.4.1'
|
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'
|
2023-03-20 22:55:11 +01:00
|
|
|
|
2023-03-01 00:19:41 +01:00
|
|
|
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
|
2023-02-24 23:47:26 +01:00
|
|
|
|
2023-03-20 22:55:11 +01:00
|
|
|
//general PDF
|
|
|
|
implementation 'org.apache.pdfbox:pdfbox:2.0.27'
|
2023-02-28 00:14:35 +01:00
|
|
|
implementation 'com.itextpdf:itextpdf:5.5.13.3'
|
2023-02-24 23:47:26 +01:00
|
|
|
|
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
|
|
|
|
}
|