Compare commits

...

6 Commits

Author SHA1 Message Date
Andrei Isvoran
e67011e46a try to bypass 2024-05-16 09:58:33 +03:00
Andrei Isvoran
ad74389399 rollback 2024-05-15 17:41:15 +03:00
Andrei Isvoran
b323b96f48 rollback 2024-05-15 17:40:10 +03:00
Andrei Isvoran
67c87e210c rollback 2024-05-15 17:08:46 +03:00
Andrei Isvoran
b592b43b6f RED-9157 - Update tracing commons 2024-05-15 16:17:35 +03:00
Andrei Isvoran
a3704dc4a8 RED-9157 - Update tracing commons 2024-05-15 15:53:19 +03:00
2 changed files with 5 additions and 4 deletions

View File

@ -3,7 +3,7 @@ import org.springframework.boot.gradle.tasks.bundling.BootBuildImage
plugins {
application
id("com.iqser.red.service.java-conventions")
id("org.springframework.boot") version "3.2.3"
id("org.springframework.boot") version "3.1.5"
id("io.spring.dependency-management") version "1.1.0"
id("org.sonarqube") version "4.2.1.3168"
id("io.freefair.lombok") version "8.4"
@ -17,7 +17,7 @@ val storageCommonsVersion = "2.45.0"
val poiVersion = "5.2.3"
val metricCommonsVersion = "2.1.0"
val persistenceServiceVersion = "2.380.0"
val springBootStarterVersion = "3.2.3"
val springBootStarterVersion = "3.1.5"
configurations {
all {
@ -63,7 +63,7 @@ dependencies {
tasks.named<BootBuildImage>("bootBuildImage") {
environment.put("BPE_DELIM_JAVA_TOOL_OPTIONS", " ")
environment.put("BPE_APPEND_JAVA_TOOL_OPTIONS", "-Dfile.encoding=UTF-8")
environment.put("BPE_APPEND_JAVA_TOOL_OPTIONS", "-Dfile.encoding=UTF-8 -Djava.awt.headless=true")
environment.put("BPE_FONTCONFIG_PATH", "/layers/fagiani_apt/apt/etc/fonts/")
val aptFile = layout.projectDirectory.file("src/main/resources/Aptfile").toString()
@ -71,7 +71,7 @@ tasks.named<BootBuildImage>("bootBuildImage") {
buildpacks.set(
listOf(
"ghcr.io/knsita/buildpacks/fagiani_apt@sha256:9771d4d27d8050aee62769490b8882fffc794745c129fb98e1f33196e2c93504",
"ghcr.io/fagiani/buildpacks/fagiani_apt@sha256:6471c8c70f32b749e29f65ae562ac0339fecad26aa9217628c00a6c31f197dae",
"urn:cnb:builder:paketo-buildpacks/java"
)
)

View File

@ -35,6 +35,7 @@ public class Application {
*/
public static void main(String[] args) {
System.setProperty("org.apache.poi.ss.ignoreMissingFontSystem", "true");
SpringApplication.run(Application.class, args);
}