Jar aufruf auf -jar geändert
All checks were successful
Productdefinitions Build & Deploy / deploy (push) Successful in 3m0s
All checks were successful
Productdefinitions Build & Deploy / deploy (push) Successful in 3m0s
This commit is contained in:
@@ -18,6 +18,6 @@ WORKDIR /productdefinitions
|
||||
COPY --from=build /productdefinitions/server-app/target/*.jar productdefinitions.jar
|
||||
|
||||
EXPOSE 9080
|
||||
ENTRYPOINT ["java", "-cp", "productdefinitions.jar", "com.kapdion.omds.productdefinitions.productdefinitionsApplication"]
|
||||
ENTRYPOINT ["java", "-jar", "productdefinitions.jar"]
|
||||
|
||||
|
||||
|
||||
@@ -112,6 +112,19 @@
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- Resource-plugin soll die gebauten Angular-Seiten in den Build-Output einbetten -->
|
||||
<plugin>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
@@ -133,19 +146,6 @@
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user