mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-12 10:35:03 +00:00
fixes
This commit is contained in:
parent
d02e0486e0
commit
52b20dd9da
@ -1,3 +1,8 @@
|
||||
// Configure bootRun to disable it or point to a main class
|
||||
bootRun {
|
||||
enabled = false
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api 'org.springframework.boot:spring-boot-starter-web'
|
||||
api 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
||||
|
@ -1,7 +1,9 @@
|
||||
repositories {
|
||||
maven { url = "https://build.shibboleth.net/maven/releases" }
|
||||
}
|
||||
|
||||
bootRun {
|
||||
enabled = false
|
||||
}
|
||||
dependencies {
|
||||
implementation project(':common')
|
||||
|
||||
|
@ -103,7 +103,9 @@ sourceSets {
|
||||
}
|
||||
|
||||
|
||||
// Configure regular jar (remove -plain classifier)
|
||||
jar {
|
||||
archiveClassifier.set("") // Remove the -plain classifier
|
||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||
zip64 = true
|
||||
|
||||
@ -126,5 +128,10 @@ jar {
|
||||
}
|
||||
}
|
||||
|
||||
// Enable bootJar for this project
|
||||
bootJar {
|
||||
enabled = true
|
||||
}
|
||||
|
||||
jar.dependsOn ':common:jar'
|
||||
jar.dependsOn ':proprietary:jar'
|
Loading…
x
Reference in New Issue
Block a user