Eliminate compilation warnings
authorelgekko <vasary@elgekko.net>
Sat, 14 Oct 2023 18:09:41 +0000 (20:09 +0200)
committerelgekko <vasary@elgekko.net>
Sat, 14 Oct 2023 18:09:41 +0000 (20:09 +0200)
.idea/misc.xml
lis-app/src/main/resources/application.yaml
pom.xml

index 12d840abacf938e0a8a48c2942b7fe754703dcc6..509fbe32e408920e84d5f707413625f13a480fff 100644 (file)
@@ -1,4 +1,3 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <project version="4">
   <component name="ExternalStorageConfigurationManager" enabled="true" />
   <component name="MavenCompilerTasksManager">
index d8e8ba84d838f24f39b9822da2c5ec18ae8b219f..184308b8d39cc8418a9d204a365b9ce7125a7cc4 100644 (file)
@@ -46,7 +46,7 @@ camunda.bpm:
     create: All tasks
   job-execution.enabled: true
 logging:
-  config: logback.xml
+  #  config: logback.xml
   level:
     org.hibernate.engine.jdbc.spi.SqlExceptionHelper: ERROR
     org.springframework.web.clientRestTemplate: ERROR
diff --git a/pom.xml b/pom.xml
index 485f56c65203e0f9922fba99ad37dcc265e3648f..dbba14787e9f19db9ae62be3e111360dc5a88129 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -36,6 +36,8 @@
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>3.8.0</version>
                 <configuration>
+                    <source>1.8</source>
+                    <target>1.8</target>
                     <annotationProcessorPaths>
                         <path>
                             <groupId>org.mapstruct</groupId>
@@ -54,9 +56,9 @@
                         </dependency>
                     </annotationProcessorPaths>
                     <compilerArgs>
-                        <compilerArg>
+                        <arg>
                             -Amapstruct.defaultComponentModel=spring
-                        </compilerArg>
+                        </arg>
                     </compilerArgs>
                 </configuration>
             </plugin>